summaryrefslogtreecommitdiff
path: root/community/setconf
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-10-05 23:14:45 +0000
committerroot <root@rshg054.dnsready.net>2011-10-05 23:14:45 +0000
commit068f1f30c0bba25b6b88cefbe982a72535fa1951 (patch)
tree1cbc872f02ee675155a7dc79fc637b4f2ed7e5e8 /community/setconf
parent3567a49f79d2dbf828b723ab54982fa6c7ea1c80 (diff)
Wed Oct 5 23:14:44 UTC 2011
Diffstat (limited to 'community/setconf')
-rw-r--r--community/setconf/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/setconf/PKGBUILD b/community/setconf/PKGBUILD
new file mode 100644
index 000000000..27a2eb3a9
--- /dev/null
+++ b/community/setconf/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+pkgname=setconf
+pkgver=0.2
+pkgrel=7
+pkgdesc="A 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')
+md5sums=('ccd0ca9527d8406d5393d77a6a56686b')
+source=("http://${pkgname}.roboticoverlords.org/${pkgname}-${pkgver}.tbz2")
+
+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: