updated on Sun Jan 15 16:02:00 UTC 2012
[aur-mirror.git] / lib2xsai / PKGBUILD
blob08d6f95dab9d35d2cbd99407565b07f6f79594f7
1 # Contributor: rabyte <rabyte__gmail>
3 pkgname=lib2xsai
4 pkgver=1
5 pkgrel=1
6 pkgdesc="A digital image processing algorithm library"
7 arch=('i686' 'x86_64')
8 url="http://bob.allegronetwork.com/projects.html"
9 license=('GPL2')
10 source=(http://bob.allegronetwork.com/2xsai/2xsai.zip)
11 md5sums=('210586c14ad1c8bc2c594a8e4b818a12')
13 build() {
14   cd $srcdir
16   sed 's|aintern.h|internal/aintern.h|g' -i src/2xsai.c
18   make -f makefile.uni OFLAGS="${CFLAGS}" || return 1
19   make -f makefile.uni prefix=$pkgdir/usr install
21   find $pkgdir -type f -exec chmod 644 {} \;
24 # vim:set ts=2 sw=2 et: