summaryrefslogtreecommitdiff
path: root/pcr/ubus
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-10-08 14:43:55 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-10-08 14:43:55 -0300
commit029a2e63ff5210df1e98ab38990cf46cb71425ca (patch)
treec7db7b0130561559319a0ad549ade0e792053378 /pcr/ubus
parentd9073a6c251db76a3356a05856f34f0354cdb606 (diff)
ubus
Diffstat (limited to 'pcr/ubus')
-rw-r--r--pcr/ubus/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/pcr/ubus/PKGBUILD b/pcr/ubus/PKGBUILD
new file mode 100644
index 000000000..80e14eaf0
--- /dev/null
+++ b/pcr/ubus/PKGBUILD
@@ -0,0 +1,32 @@
+# Maintainer: Nicolás Reynolds <fauno@kiwwwi.com.ar>
+pkgname=ubus
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="OpenWRT's RPC client utility"
+arch=('i686' 'mips64el')
+url="https://openwrt.org"
+license=('LGPL2.1')
+depends=('libubox' 'json-c')
+makedepends=('git' 'cmake' 'lua51')
+source=(git://nbd.name/luci2/ubus.git)
+md5sums=(SKIP)
+
+pkgver() {
+ cd ${srcdir}/${pkgname}
+ local ver="$(git describe --long --tags)"
+ printf "%s" "${ver//-/.}"
+}
+
+build() {
+ cd ${srcdir}/${pkgname}
+
+ cmake -DCMAKE_INSTALL_PREFIX=/usr .
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}
+ make DESTDIR=${pkgdir}/ install
+}
+
+# vim:set ts=2 sw=2 et: