wok annotate pmount/receipt @ rev 13208
postgis: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Aug 06 15:22:20 2012 +0200 (2012-08-06) |
parents | 7452aa4084ce |
children | 2b9f96603415 |
rev | line source |
---|---|
pascal@1888 | 1 # SliTaz package receipt. |
pascal@1888 | 2 |
pascal@1888 | 3 PACKAGE="pmount" |
slaxemulator@10249 | 4 VERSION="0.9.23" |
pascal@1888 | 5 CATEGORY="system-tools" |
pascal@1888 | 6 SHORT_DESC="Mount arbitrary hotpluggable devices as normal user." |
pascal@1888 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
slaxemulator@10249 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slaxemulator@5438 | 9 WEB_SITE="http://pmount.alioth.debian.org/" |
slaxemulator@10249 | 10 WGET_URL="http://alioth.debian.org/frs/download.php/3310/$TARBALL" |
pascal@2456 | 11 DEPENDS="dbus hal sysfsutils" |
pankso@12481 | 12 BUILD_DEPENDS="util-linux-blkid-dev intltool" |
pascal@1889 | 13 CONFIG_FILES="/etc/pmount.allow" |
pascal@1888 | 14 |
pascal@1888 | 15 # Rules to configure and make the package. |
pascal@1888 | 16 compile_rules() |
pascal@1888 | 17 { |
pascal@1888 | 18 cd $src |
pascal@1888 | 19 sed -i 's/ -D / /' src/Makefile* |
slaxemulator@10069 | 20 ./configure $CONFIGURE_ARGS && |
slaxemulator@10069 | 21 make && make install |
pascal@1888 | 22 } |
pascal@1888 | 23 |
pascal@1888 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1888 | 25 genpkg_rules() |
pascal@1888 | 26 { |
pascal@1888 | 27 mkdir -p $fs/usr/share/locale |
pascal@1888 | 28 cp -a $_pkg/etc $fs |
pascal@1888 | 29 cp -a $_pkg/usr/bin $fs/usr |
pascal@1888 | 30 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
pascal@1888 | 31 cp -a $_pkg/usr/share/locale/de $fs/usr/share/locale |
pascal@1888 | 32 } |
pascal@1888 | 33 |