Skip to content

Commit 51168e6

Browse files
committed
gammu: fix manpage installation
the vmove pattern was making them get installed to /usr/share/man/*/
1 parent 545da43 commit 51168e6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

srcpkgs/gammu/template

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Template file for 'gammu'
22
pkgname=gammu
33
version=1.42.0
4-
revision=1
4+
revision=2
55
build_style=cmake
66
hostmakedepends="pkg-config intltool"
77
makedepends="libbluetooth-devel libusb-devel bash-completion
@@ -28,7 +28,9 @@ gammu-smsd_package() {
2828
short_desc+=" - SMS daemon"
2929
pkg_install() {
3030
vmove "usr/bin/gammu-smsd*"
31-
vmove "usr/share/man/*/gammu-smsd*"
31+
for mand in $(ls ${DESTDIR}/usr/share/man); do
32+
vmove "usr/share/man/$mand/gammu-smsd*"
33+
done
3234
vmove "usr/lib/libgsmsd*"
3335
}
3436
}

0 commit comments

Comments
 (0)