wok view sakura/receipt @ rev 2713

Up ffmpeg-dev (18664)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 23 09:39:12 2009 +0200 (2009-04-23)
parents 0e2bd4ef45e9
children 91e4159dad79
line source
1 # SliTaz package receipt
3 PACKAGE="sakura"
4 VERSION="2.3.2"
5 CATEGORY="utilities"
6 SHORT_DESC="Lightweight GTK+/vte Terminal"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ vte xorg-libXdamage"
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 sed -i 's/$/ -lncurses/' CMakeFiles/sakura.dir/link.txt &&
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
28 cp -a $_pkg/usr/bin $fs/usr
29 }