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="dio is a generic input output program for X. It reads list items from stdin. These items can be played on selection, by order or randomly. Items can also be filtered or removed. dio can also generate text for stdout from user input."
12 url="http://code.google.com/p/dynamic-io/"
23 source=(dio-installpath.patch config.h
24 http://dynamic-io.googlecode.com/files/$pkgname-$pkgver.tar.gz)
26 md5sums=('6963fffd04d25d4fc7c5c3d30f587409'
27 'a4d3963fb6af5ffc394d745b9bb6398d'
28 'acdc75530abcbaa70f3147dd2cd153aa')
30 cd "$srcdir/$pkgname-$pkgver"
32 patch -p1 < ../dio-installpath.patch
36 make DESTDIR="$pkgdir/" install
38 for i in README bin/*;
39 do install -D -m 755 $i $pkgdir/usr/share/dio/$i
43 # vim:set ts=2 sw=2 et: