# HG changeset patch # User Pascal Bellard # Date 1229597144 0 # Node ID 17c992676fd92971a4c8eab5fb76679d6d1c136a # Parent 4aeb7e80b8ca78c62fc3ad0ca6e013809c77ee08 Add pmount diff -r 4aeb7e80b8ca -r 17c992676fd9 ivman/receipt --- a/ivman/receipt Wed Dec 17 16:51:58 2008 +0000 +++ b/ivman/receipt Thu Dec 18 10:45:44 2008 +0000 @@ -10,6 +10,7 @@ WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" BUILD_DEPENDS="hal-dev hal" DEPENDS="hal dbus glib libxml2" +CONFIG_FILES="/etc/ivman" # Rules to configure and make the package. compile_rules() diff -r 4aeb7e80b8ca -r 17c992676fd9 pmount/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pmount/receipt Thu Dec 18 10:45:44 2008 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="pmount" +VERSION="0.9.13" +CATEGORY="system-tools" +SHORT_DESC="Mount arbitrary hotpluggable devices as normal user." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.piware.de/projects.shtml" +WGET_URL="http://www.piware.de/projects/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + sed -i 's/ -D / /' src/Makefile* + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/locale + cp -a $_pkg/etc $fs + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale + cp -a $_pkg/usr/share/locale/de $fs/usr/share/locale +} +