wok view pmount/receipt @ rev 1889

Pmount: add CONFIG_FILES
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 18 10:47:38 2008 +0000 (2008-12-18)
parents 17c992676fd9
children d1aba649375c
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"
11 CONFIG_FILES="/etc/pmount.allow"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 sed -i 's/ -D / /' src/Makefile*
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share/locale
28 cp -a $_pkg/etc $fs
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
31 cp -a $_pkg/usr/share/locale/de $fs/usr/share/locale
32 }