1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Your Name <youremail@domain.com>
10 pkgdesc="Jpeg information utility"
11 arch=('i686' 'x86_64')
12 url="http://www.kokkonen.net/tjko/projects.html"
15 source=(http://www.kokkonen.net/tjko/src/$pkgname-$pkgver.tar.gz)
16 md5sums=('344be10d6b16ec559c5d8b7e3707241f')
19 cd "$srcdir/$pkgname-$pkgver"
21 ./configure --prefix=/usr || return 1
23 make prefix="$pkgdir/usr" install || return 1
26 # vim:set ts=2 sw=2 et: