summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorÉric Gillet2017-02-25 10:24:26 +0100
committerÉric Gillet2017-02-25 10:24:26 +0100
commit2e42570ebecc116b05f281801d1c7e82953e3d7a (patch)
tree70bfde64ce6836cf399b5218d6ca48159efdf751
parent92e19ac8471e4251b90ba67640ab7e34d1511040 (diff)
downloadaur-2e42570ebecc116b05f281801d1c7e82953e3d7a.tar.gz
Remove useless ls and fix package()
-rw-r--r--PKGBUILD5
1 files changed, 2 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 578257ffb62d..77fda5c42aa6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: gileri <twiked at gmail d(0)t com>
pkgname=pyosmium-git
-pkgver=v2.6.0.r2.gc7604fd
+pkgver=v2.11.0.r2.g1dd5880
pkgrel=1
pkgdesc="Python bindings for libosmium"
url="http://osmcode.org/pyosmium"
@@ -25,7 +25,6 @@ build() {
package() {
cd "${srcdir}/pyosmium"
- python setup.py install --prefix="${pkgdir}/usr/"
- ls
+ python setup.py install --prefix="/usr/" --root="$pkgdir/" --optimize=1
install -Dm644 LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}