summaryrefslogtreecommitdiff
path: root/community-staging/setconf/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-staging/setconf/PKGBUILD')
-rw-r--r--community-staging/setconf/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community-staging/setconf/PKGBUILD b/community-staging/setconf/PKGBUILD
new file mode 100644
index 000000000..26b898bf9
--- /dev/null
+++ b/community-staging/setconf/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 63823 2012-02-05 20:27:23Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+pkgname=setconf
+pkgver=0.3.2
+pkgrel=3
+pkgdesc="Utility to easily change settings in Makefiles and configuration files"
+arch=('x86_64' 'i686')
+url="http://setconf.roboticoverlords.org/"
+license=('GPL')
+depends=('pcre' 'gc')
+makedepends=('shedskin>=0.9.1')
+source=("http://setconf.roboticoverlords.org/$pkgname-$pkgver.tbz2")
+sha256sums=('8b18e11da7adf78f2e21c39cfa949b178fa1b2f85e691b85be123023b7303f03')
+
+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: