updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / fx2_programmer / PKGBUILD
blobde75ffb21fd22393661d86e7279cd7437bcbe4df
1 # Contributor: Nate Rhodes  <nate.rhodes at gmail.com>
2 # Created:     January 2008
4 pkgname=fx2_programmer
5 pkgver=2.0.2
6 pkgrel=1
7 pkgdesc="A small utility to access the Cypress Semiconductor CY7C68013 chip."
8 arch=('i686')
9 url="http://volodya-project.sourceforge.net/fx2_programmer.php"
10 license=('LGPL')
11 depends=('freeglut' 'fftw' 'libusb')
12 source=("http://downloads.sourceforge.net/volodya-project/$pkgname-$pkgver.tgz")
13 md5sums=('ff2878e900b6cbae427320e54e94f28d')
15 build() {
16   # Go to source dir
17   cd "$startdir/src/$pkgname"
19   # Set up the "install" directories
20   mkdir -p "$startdir/pkg/usr/bin"
22   # Update 'install' rule to put binaries in right place
23   sed -i.orig "s|\${PREFIX}/bin/|$startdir/pkg/usr/bin|g" Makefile 
25   # Build the binaries
26   make || return 1
27   make DESTDIR="$startdir/pkg/usr/bin" install || return 1