gammu: fix manpage installation

the vmove pattern was making them get installed to /usr/share/man/*/
This commit is contained in:
classabbyamp 2023-03-30 17:00:47 -04:00
parent 545da43c47
commit 51168e6939
No known key found for this signature in database
GPG Key ID: 6BE0755918A4C7F5

View File

@ -1,7 +1,7 @@
# Template file for 'gammu'
pkgname=gammu
version=1.42.0
revision=1
revision=2
build_style=cmake
hostmakedepends="pkg-config intltool"
makedepends="libbluetooth-devel libusb-devel bash-completion
@ -28,7 +28,9 @@ gammu-smsd_package() {
short_desc+=" - SMS daemon"
pkg_install() {
vmove "usr/bin/gammu-smsd*"
vmove "usr/share/man/*/gammu-smsd*"
for mand in $(ls ${DESTDIR}/usr/share/man); do
vmove "usr/share/man/$mand/gammu-smsd*"
done
vmove "usr/lib/libgsmsd*"
}
}