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 /social/uci/PKGBUILD | |
parent | 3a0ad5dc35d5cff379cdfc736b9cae856416fe6a (diff) |
Wed Oct 9 03:18:48 PDT 2013
Diffstat (limited to 'social/uci/PKGBUILD')
-rw-r--r-- | social/uci/PKGBUILD | 29 |
1 files changed, 10 insertions, 19 deletions
diff --git a/social/uci/PKGBUILD b/social/uci/PKGBUILD index d306b77bd..5a14ac2c0 100644 --- a/social/uci/PKGBUILD +++ b/social/uci/PKGBUILD @@ -6,34 +6,25 @@ pkgdesc="OpenWRT's Unified Configuration Interface" arch=('i686' 'mips64el') url="https://openwrt.org" license=('GPL2') -makedepends=('git' 'cmake' 'lua') -source=(http://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}.tar.gz) -md5sums=('135bf6c4188b72c7fd7954f592b1e4e4') +makedepends=('git' 'cmake' 'lua51') +source=(git://nbd.name/uci.git) +md5sums=(SKIP) -# 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 .. +pkgver() { + cd ${srcdir}/${pkgname} + local ver="$(git describe --long --tags)" + printf "%s" "${ver//-/.}" } build() { - cd ${srcdir}/${pkgname}-${pkgver} + cd ${srcdir}/${pkgname} - cmake . + cmake -DCMAKE_INSTALL_PREFIX=/usr . make } package() { - cd ${srcdir}/${pkgname}-${pkgver} + cd ${srcdir}/${pkgname} make DESTDIR=${pkgdir}/ install } |