diff options
author | root <root@rshg054.dnsready.net> | 2013-10-09 03:23:29 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-10-09 03:23:29 -0700 |
commit | 737832e1bd70820f477143512b5c89a30a6e81d0 (patch) | |
tree | 665a7ce2bee287680b34294d30d2a2602da059ea /pcr/ubus | |
parent | 3a0ad5dc35d5cff379cdfc736b9cae856416fe6a (diff) |
Wed Oct 9 03:18:48 PDT 2013
Diffstat (limited to 'pcr/ubus')
-rw-r--r-- | pcr/ubus/PKGBUILD | 32 |
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: |