wok view pmount/receipt @ rev 1888

Add pmount
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 18 10:45:44 2008 +0000 (2008-12-18)
parents
children 8872a9898faa
line source
1 # SliTaz package receipt.
3 PACKAGE="pmount"
4 VERSION="0.9.13"
5 CATEGORY="system-tools"
6 SHORT_DESC="Mount arbitrary hotpluggable devices as normal user."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.piware.de/projects.shtml"
10 WGET_URL="http://www.piware.de/projects/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 sed -i 's/ -D / /' src/Makefile*
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/locale
27 cp -a $_pkg/etc $fs
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
30 cp -a $_pkg/usr/share/locale/de $fs/usr/share/locale
31 }