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: Joao Estevao <trankas@gmail.com>
10 pkgdesc="A command line utility to retain/recall the full paths of files and directories"
11 arch=('i686' 'x86_64')
12 url="http://retain.sourceforge.net/"
23 source=($url$pkgname-$pkgver.tar.bz2)
25 md5sums=('6024b04e68fcb50e412b5d1c9591437c')
28 cd "$startdir/src/$pkgname-$pkgver"
30 ./configure --prefix=/usr
32 mkdir -p $startdir/pkg/usr/bin || return 1
33 mkdir -p $startdir/pkg/usr/man/man1 || return 1
34 make PREFIX="$startdir/pkg/usr" MANDIR="$startdir/pkg/usr/man" install
37 # vim:set ts=2 sw=2 et: