Includes and JTag application from OpenWinCE.

git-svn-id: svn+ssh://scm.narf.ssji.net/svn/archlinux-packages@91 df209809-8e4a-0410-9a64-c169741eb0fc
This commit is contained in:
mehani 2008-01-04 16:00:54 +00:00
commit 964ecd1c4d
2 changed files with 34 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = openwince-jtag
pkgdesc = Software package to work with JTAG-aware hardware devices, from the OpenWinCE project
pkgver = 0.5.1
pkgrel = 1
url = http://openwince.sourceforge.net/jtag/
arch = i686
license = GPL
depends = readline
depends = openwince-include<=0.4
source = http://downloads.sourceforge.net/openwince/jtag-0.5.1.tar.bz2
md5sums = 3171d51fec40e9f338ea2d388544fd66
pkgname = openwince-jtag

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Contributor: Olivier Mehani <olivier.mehani@inria.fr>
# $Id$
pkgname=openwince-jtag
pkgver=0.5.1
pkgrel=1
pkgdesc="Software package to work with JTAG-aware hardware devices, from the OpenWinCE project"
url="http://openwince.sourceforge.net/jtag/"
source=(http://downloads.sourceforge.net/openwince/jtag-${pkgver}.tar.bz2)
md5sums=('3171d51fec40e9f338ea2d388544fd66')
depends=('readline' 'openwince-include<=0.4')
arch=('i686')
license=('GPL2')
build() {
cd $startdir/src/jtag-$pkgver
./configure --prefix=/usr || exit 1
make || exit 2
make DESTDIR=$startdir/pkg install || return 3
}