wok view fpm2/receipt @ rev 1203

postfix: set default localhost
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Aug 08 16:47:03 2008 +0000 (2008-08-08)
parents 23195453e995
children 3eacc9c96968
line source
1 # SliTaz package receipt.
3 PACKAGE="fpm2"
4 VERSION="0.72"
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 }