wok-next view fpm2/receipt @ rev 6694
Changed libwebkit to compile with -j1. This is a fix cause it will not compile right the first time with jobs set to 4. I also remove webkit-r-dev for build depend. Thats not needed.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Oct 13 03:29:24 2010 +0000 (2010-10-13) |
parents | bcdadd8bfbfa |
children | af9a1b47948c |
line source
1 # SliTaz package receipt.
3 PACKAGE="fpm2"
4 VERSION="0.76.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Password manager."
7 DEPENDS="expat gtk+ libxml2 xorg-libX11 xorg-libXau xorg-libXcomposite \
8 xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama \
9 xorg-libXrandr xorg-libXrender xorg-libXdamage"
10 BUILD_DEPENDS="gtk+-dev libxml2-dev"
11 MAINTAINER="pankso@slitaz.org"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://als.regnet.cz/fpm2/"
14 WGET_URL="http://als.regnet.cz/fpm2/download/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 }