summaryrefslogtreecommitdiff
path: root/social
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-10-08 14:20:51 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-10-08 14:20:51 -0300
commit05ea680f5adc872454da591415f32a4531dd5536 (patch)
tree28df8b0340e1e622329f3492f79023aa71751878 /social
parent633ed5544cf2a17ce585c2a3383518f41c42729a (diff)
uci upgrade
Diffstat (limited to 'social')
-rw-r--r--social/uci/PKGBUILD29
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
}