summaryrefslogtreecommitdiff
path: root/social
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-03-03 12:11:08 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-03-03 12:11:08 -0300
commit97991fe0aededc07fcf29dc41b184261b7599c44 (patch)
treebb673c01274c020274eccc5122d42bdb4e199202 /social
parent69b78ed95efd699c0dfbe588457234eee3ae9d9c (diff)
downloadabslibre-97991fe0aededc07fcf29dc41b184261b7599c44.tar.gz
abslibre-97991fe0aededc07fcf29dc41b184261b7599c44.tar.bz2
abslibre-97991fe0aededc07fcf29dc41b184261b7599c44.zip
social/uci-0.8.0-1
Diffstat (limited to 'social')
-rw-r--r--social/uci/PKGBUILD40
1 files changed, 40 insertions, 0 deletions
diff --git a/social/uci/PKGBUILD b/social/uci/PKGBUILD
new file mode 100644
index 000000000..51c3ba0e0
--- /dev/null
+++ b/social/uci/PKGBUILD
@@ -0,0 +1,40 @@
+# Maintainer: Nicolás Reynolds <fauno@kiwwwi.com.ar>
+pkgname=uci
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="OpenWRT's Unified Configuration Interface"
+arch=('i686')
+url="https://openwrt.org"
+license=('GPL2')
+makedepends=('git' 'cmake' 'lua')
+source=(http://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}.tar.gz)
+md5sums=('135bf6c4188b72c7fd7954f592b1e4e4')
+
+# source PKGBUILD; mksource
+mksource() {
+
+ if [ -d uci/.git ]; then
+ pushd uci; git pull; popd
+ else
+ git clone git://nbd.name/uci.git
+ fi
+
+ cd uci/
+ git archive --prefix=${pkgname}-${pkgver}/ v${pkgver} | \
+ gzip -9 > ../${pkgname}-${pkgver}.tar.gz
+ cd ..
+}
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+ cmake .
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir}/ install
+}
+
+# vim:set ts=2 sw=2 et: