commit 964ecd1c4dd76be217a8bebc956c427f795af633 Author: mehani Date: Fri Jan 4 16:00:54 2008 +0000 Includes and JTag application from OpenWinCE. git-svn-id: svn+ssh://scm.narf.ssji.net/svn/archlinux-packages@91 df209809-8e4a-0410-9a64-c169741eb0fc diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..4e46fb7e42d7 --- /dev/null +++ b/.SRCINFO @@ -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 + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..ccba84242bde --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Contributor: Olivier Mehani +# $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 +}