summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilippo Berto2019-10-17 15:00:32 +0200
committerFilippo Berto2019-10-17 15:01:20 +0200
commit2e17d3d4d5a7e056d625a8eb203792b7af10d482 (patch)
tree88dfc879bda137301dd186c89a40de0d12eed718
parent8844b9e9abaa3dbaf7b957eeb4635dfceb96547c (diff)
downloadaur-2e17d3d4d5a7e056d625a8eb203792b7af10d482.tar.gz
Fixed checkout
The script doesn't use the last tag anymore
-rw-r--r--PKGBUILD6
1 files changed, 1 insertions, 5 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 656a11a7aa71..5ac81637c21a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Filippo Berto <berto.f@protonmail.com>
_pkgname=ndn-cxx
pkgname=${_pkgname}-git
-pkgver=ndn.cxx.0.6.6.r0.g0d748af3
+pkgver=ndn.cxx.0.6.6.r47.ge6e125ea
pkgrel=1
# epoch=
pkgdesc="Library implementing Named Data Networking (NDN) primitives that can be used to write various NDN applications"
@@ -26,8 +26,6 @@ validpgpkeys=()
prepare() {
cd "${srcdir}/${_pkgname}"
- git checkout `git describe --tags --abbrev=0`
- # Run the initial configuration
./waf configure
}
@@ -38,13 +36,11 @@ pkgver() {
build() {
cd "${srcdir}/${_pkgname}"
- # Build libraries and tools
./waf build
}
package() {
cd "${srcdir}/${_pkgname}"
./waf install --destdir="${pkgdir}"
-
mv "${pkgdir}/usr/local/"* "${pkgdir}/usr"
}