wok view sakura/receipt @ rev 1522

libgnomeprintw: fix compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 08 17:01:36 2008 +0000 (2008-10-08)
parents 4f8dd16a82a2
children a534ac8b5c06
line source
1 # SliTaz package receipt
3 PACKAGE="sakura"
4 VERSION="2.1.2"
5 CATEGORY="utilities"
6 SHORT_DESC="Lightweight GTK+/vte Terminal"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ vte"
9 BUILD_DEPENDS="gtk+-dev vte-dev cmake"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://pleyades.net/david/sakura.php"
12 WGET_URL="http://pleyades.net/david/projects/sakura/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 cmake -DCMAKE_INSTALL_PREFIX=/usr .
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
27 cp -a $_pkg/usr/bin $fs/usr
28 }