From 05ea680f5adc872454da591415f32a4531dd5536 Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Tue, 8 Oct 2013 14:20:51 -0300 Subject: uci upgrade --- social/uci/PKGBUILD | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) (limited to 'social') 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 } -- cgit v1.2.3