wok annotate sakura/receipt @ rev 13802

Up: sakura (2.4.2)
author Alexander Medvedev <devl547@gmail.com>
date Sun Jan 06 04:56:01 2013 +0300 (2013-01-06)
parents af9a1b47948c
children 5fafb0ebc7d5
rev   line source
pankso@638 1 # SliTaz package receipt
pankso@638 2
pankso@638 3 PACKAGE="sakura"
devl547@13802 4 VERSION="2.4.2"
pascal@741 5 CATEGORY="utilities"
pankso@638 6 SHORT_DESC="Lightweight GTK+/vte Terminal"
pankso@638 7 MAINTAINER="pankso@slitaz.org"
pascal@2524 8 DEPENDS="gtk+ vte xorg-libXdamage"
devl547@13802 9 BUILD_DEPENDS="gtk+-dev vte-dev gettext cmake wget"
pankso@638 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
devl547@13802 11 WEB_SITE="http://www.pleyades.net/david/projects/sakura"
devl547@13802 12 WGET_URL="https://launchpad.net/sakura/trunk/$VERSION/+download/$TARBALL"
pankso@638 13
pankso@638 14 # Rules to configure and make the package.
pankso@638 15 compile_rules()
pankso@774 16 {
pankso@638 17 cd $src
slaxemulator@7422 18 cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE . &&
pascal@1539 19 sed -i 's/$/ -lncurses/' CMakeFiles/sakura.dir/link.txt &&
erjo@4724 20 sed -i 's/-u//' CMakeLists.txt &&
erjo@4724 21 sed -i 's/-u//' CMakeFiles/man.dir/build.make &&
pascal@1539 22 make &&
pankso@638 23 make DESTDIR=$PWD/_pkg install
pankso@638 24 }
pankso@638 25
pankso@638 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@638 27 genpkg_rules()
pankso@638 28 {
pascal@11623 29 mkdir -p $fs/usr/share/applications
pascal@11623 30 cp -a $stuff/sakura.desktop $fs/usr/share/applications
pankso@638 31 cp -a $_pkg/usr/bin $fs/usr
pankso@638 32 }
pankso@638 33