wok-next diff pmount/receipt @ rev 20611
Add rpcsvc-proto
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Apr 19 21:54:31 2018 +0300 (2018-04-19) |
parents | 2b9f96603415 |
children | a3c581bf52b8 |
line diff
1.1 --- a/pmount/receipt Sat Aug 10 13:52:56 2013 +0000 1.2 +++ b/pmount/receipt Thu Apr 19 21:54:31 2018 +0300 1.3 @@ -1,35 +1,29 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="pmount" 1.8 VERSION="0.9.23" 1.9 CATEGORY="system-tools" 1.10 -SHORT_DESC="Mount arbitrary hotpluggable devices as normal user." 1.11 +SHORT_DESC="Mount arbitrary hotpluggable devices as normal user" 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL3" 1.14 +WEB_SITE="http://pmount.alioth.debian.org/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 -WEB_SITE="http://pmount.alioth.debian.org/" 1.18 WGET_URL="http://alioth.debian.org/frs/download.php/3310/$TARBALL" 1.19 -CONFIG_FILES="/etc/pmount.allow" 1.20 1.21 -DEPENDS="dbus hal sysfsutils" 1.22 BUILD_DEPENDS="util-linux-blkid-dev intltool" 1.23 1.24 -# Rules to configure and make the package. 1.25 -compile_rules() 1.26 -{ 1.27 - cd $src 1.28 +compile_rules() { 1.29 sed -i 's/ -D / /' src/Makefile* 1.30 - ./configure $CONFIGURE_ARGS && 1.31 - make && make install 1.32 + 1.33 + ./configure $CONFIGURE_ARGS && 1.34 + fix libtool && 1.35 + make && 1.36 + make install 1.37 } 1.38 1.39 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.40 -genpkg_rules() 1.41 -{ 1.42 - mkdir -p $fs/usr/share/locale 1.43 - cp -a $install/etc $fs 1.44 - cp -a $install/usr/bin $fs/usr 1.45 - cp -a $install/usr/share/locale/fr $fs/usr/share/locale 1.46 - cp -a $install/usr/share/locale/de $fs/usr/share/locale 1.47 +genpkg_rules() { 1.48 + copy @std 1.49 + DEPENDS="dbus hal sysfsutils" 1.50 + CONFIG_FILES="/etc/pmount.allow" 1.51 } 1.52 -