summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilhem Saurel2021-01-05 18:18:43 +0100
committerGuilhem Saurel2021-01-05 18:18:43 +0100
commit26f78d4600ce4e1e1577476dfc4b27ad2b86951b (patch)
treefaf479787c55f65683a05ba222a7e2fb6c4b1d02
parentbd44579c69503bd2f69a610889288227397215c8 (diff)
downloadaur-26f78d4600ce4e1e1577476dfc4b27ad2b86951b.tar.gz
fix docs
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD7
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a173b4e209d0..9a0cc96040a8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = hpp-fcl
pkgdesc = An extension of the Flexible Collision Library
pkgver = 1.6.0
- pkgrel = 4
+ pkgrel = 5
url = https://github.com/humanoid-path-planner/hpp-fcl
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index ff571ddf169b..2211905fcbe3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,10 @@
# Maintainer: Guilhem Saurel <saurel@laas.fr>
pkgorg='humanoid-path-planner'
-pkgname=('hpp-fcl' 'hpp-fcl-docs')
+_pkgname='hpp-fcl'
+pkgname=("$_pkgname" "$_pkgname-docs")
pkgver=1.6.0
-pkgrel=4
+pkgrel=5
pkgdesc="An extension of the Flexible Collision Library"
arch=('i686' 'x86_64')
url="https://github.com/$pkgorg/$pkgname"
@@ -44,6 +45,6 @@ package_hpp-fcl() {
package_hpp-fcl-docs() {
cd "$pkgbase-$pkgver"
make DESTDIR="$pkgdir/" install
- rm -rf $pkgdir/usr/{lib,include}
+ rm -rf $pkgdir/usr/{lib,include,"share/$_pkgname"}
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}