summaryrefslogtreecommitdiff
path: root/community/unifdef/PKGBUILD
blob: 7e25872c790bcf9867162ded31b112d7a40b72dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 88335 2013-04-16 13:31:44Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>

pkgname=unifdef
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=('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/
}