updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / rewrite / PKGBUILD
blob8b7bf6f2a30bc3052526fd1a8ca3073dbdbb35b0
1 # Maintainer: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
3 pkgname=rewrite
4 pkgver=1.0
5 pkgrel=3
6 pkgdesc="Reads a file, feeding its contents thru a pipe/shell command, read it and write back to the file"
7 arch=('i686' 'x86_64')
8 url="http://oss.ezic.com/"
9 license=('GPL')
10 depends=('glibc')
11 source=(http://oss.ezic.com/$pkgname/$pkgname-$pkgver.tar.gz)
12 md5sums=('06eb02ebe78c545b4bd6ea13fadaa43a')
14 build() {
15   cd "$srcdir/$pkgname"
17   make || return 1
19   install -d $pkgdir/usr/bin
20   install -d $pkgdir/usr/share/doc/$pkgname
22   install -m 755 $pkgname $pkgdir/usr/bin/
23   install -m 644 README $pkgdir/usr/share/doc/$pkgname/
26 # vim:set ts=2 sw=2 et: