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 # Maintainer: Thomas Oster <thomas.oster@rwth-aachen.de>
11 pkgdesc="use pacinstall instead of make install to generate binary packages without creating an PKGBUILD(like checkinstall for debian/slackware)"
13 url="http://kantico.de/texray/pacinstall.xhtml"
16 depends=('installwatch')
27 source=('http://kantico.de/texray/code/pacinstall-0.2')
29 md5sums=('e637e4dc6b2a584243a26a61d44f6faf')
32 mkdir -p $pkgdir/usr/bin
33 cp pacinstall-0.2 $pkgdir/usr/bin/pacinstall
34 chmod +x $pkgdir/usr/bin/pacinstall
37 # vim:set ts=2 sw=2 et: