diff options
author | root <root@rshg054.dnsready.net> | 2013-04-17 00:05:54 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-04-17 00:05:54 -0700 |
commit | 0f02baec6afdab918d86a226ee9a984482b5a534 (patch) | |
tree | 15cb1e77a0a46bc218404a4725caeda3089039f8 /community/unifdef | |
parent | 975d6f489c6c43bbc7b816ac43333c54c1f4df21 (diff) |
Wed Apr 17 00:05:54 PDT 2013
Diffstat (limited to 'community/unifdef')
-rw-r--r-- | community/unifdef/PKGBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/community/unifdef/PKGBUILD b/community/unifdef/PKGBUILD index d9e468341..7e25872c7 100644 --- a/community/unifdef/PKGBUILD +++ b/community/unifdef/PKGBUILD @@ -1,21 +1,25 @@ -# $Id: PKGBUILD 83684 2013-02-04 11:06:31Z spupykin $ +# $Id: PKGBUILD 88335 2013-04-16 13:31:44Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=unifdef -pkgver=2.6 -pkgrel=3 +pkgver=2.7 +pkgrel=1 pkgdesc="Remove #ifdef'ed lines" arch=(i686 x86_64) url="http://dotat.at/prog/unifdef/" license=('GPL') depends=() source=("http://dotat.at/prog/unifdef/unifdef-$pkgver.tar.gz") -md5sums=('18b832baea2c7b6b00bd7d4f3db38f62') +md5sums=('72357e9faa877fe21f5d621d2024a242') build() { cd "$srcdir/$pkgname-$pkgver" make clean make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man1 install -m 0755 unifdef $pkgdir/usr/bin/ install -m 0644 unifdef.1 $pkgdir/usr/share/man/man1/ |