updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / rr / PKGBUILD
blob486c89741772a3540a6c31e9c01293641ff5fd49
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>
7 pkgname=rr
8 pkgver=1.2
9 pkgrel=1
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/"
13 license=('GPL')
14 groups=()
15 depends=()
16 makedepends=()
17 provides=()
18 conflicts=()
19 replaces=()
20 backup=()
21 options=()
22 install=
23 source=($url$pkgname-$pkgver.tar.bz2)
24 noextract=()
25 md5sums=('6024b04e68fcb50e412b5d1c9591437c')
27 build() {
28   cd "$startdir/src/$pkgname-$pkgver"
30   ./configure --prefix=/usr
31   make || return 1
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: