wok view sakura/receipt @ rev 5230

Remove xfce4-notification. Deprecated. Thaks guys.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Apr 07 23:53:55 2010 +0200 (2010-04-07)
parents 0b02072d7f48
children bac7a17e05d2
line source
1 # SliTaz package receipt
3 PACKAGE="sakura"
4 VERSION="2.3.6"
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 sed -i 's/-u//' CMakeLists.txt &&
21 sed -i 's/-u//' CMakeFiles/man.dir/build.make &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }