wok rev 1888

Add pmount
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 18 10:45:44 2008 +0000 (2008-12-18)
parents 4aeb7e80b8ca
children 8872a9898faa
files ivman/receipt pmount/receipt
line diff
     1.1 --- a/ivman/receipt	Wed Dec 17 16:51:58 2008 +0000
     1.2 +++ b/ivman/receipt	Thu Dec 18 10:45:44 2008 +0000
     1.3 @@ -10,6 +10,7 @@
     1.4  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
     1.5  BUILD_DEPENDS="hal-dev hal"
     1.6  DEPENDS="hal dbus glib libxml2"
     1.7 +CONFIG_FILES="/etc/ivman"
     1.8  
     1.9  # Rules to configure and make the package.
    1.10  compile_rules()
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/pmount/receipt	Thu Dec 18 10:45:44 2008 +0000
     2.3 @@ -0,0 +1,32 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="pmount"
     2.7 +VERSION="0.9.13"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="Mount arbitrary hotpluggable devices as normal user."
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.12 +WEB_SITE="http://www.piware.de/projects.shtml"
    2.13 +WGET_URL="http://www.piware.de/projects/$TARBALL"
    2.14 +
    2.15 +# Rules to configure and make the package.
    2.16 +compile_rules()
    2.17 +{
    2.18 +	cd $src
    2.19 +	sed -i 's/ -D / /' src/Makefile*
    2.20 +	./configure --prefix=/usr --infodir=/usr/share/info \
    2.21 +	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    2.22 +	make &&
    2.23 +	make DESTDIR=$PWD/_pkg install
    2.24 +}
    2.25 +
    2.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.27 +genpkg_rules()
    2.28 +{
    2.29 +	mkdir -p $fs/usr/share/locale
    2.30 +	cp -a $_pkg/etc $fs
    2.31 +	cp -a $_pkg/usr/bin $fs/usr
    2.32 +	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    2.33 +	cp -a $_pkg/usr/share/locale/de $fs/usr/share/locale
    2.34 +}
    2.35 +