wok view fpm2/receipt @ rev 905

Linux: don't use rdev
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 15 12:47:58 2008 +0000 (2008-06-15)
parents
children 2fd6b4c9cd4e
line source
1 # SliTaz package receipt.
3 PACKAGE="fpm2"
4 VERSION="0.71"
5 CATEGORY="utilities"
6 SHORT_DESC="Password manager."
7 BUILD_DEPENDS="gtk+-dev libxml2-dev"
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://als.regnet.cz/fpm2/"
11 WGET_URL="http://als.regnet.cz/fpm2/download/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man
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
28 cp -a $_pkg/usr/bin $fs/usr
29 }