summaryrefslogtreecommitdiff
path: root/community/setconf/PKGBUILD
blob: d1f7c2c41d145e3af7fe8ef4ccaf08b465f1dfb4 (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
27
28
29
30
# $Id: PKGBUILD 61489 2012-01-01 19:21:14Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
pkgname=setconf
pkgver=0.3.1
pkgrel=1
pkgdesc="Utility to easily change settings in Makefiles and other configuration files"
arch=('x86_64' 'i686')
url="http://setconf.roboticoverlords.org/"
license=('GPL')
depends=('pcre' 'gc')
makedepends=('shedskin>=0.1.2')
source=("http://setconf.roboticoverlords.org/$pkgname-$pkgver.tbz2")
sha256sums=('1055757af5dc5ecb529f918f9e601552f24caca8ca08833a52e4e3a1243cbd01')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  shedskin "$pkgname.py"
  make CPPFLAGS="-march=native -fomit-frame-pointer"
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
  install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"
  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}

# vim:set ts=2 sw=2 et: