wok annotate stjerm-terminal/receipt @ rev 15119

stjerm-terminal: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 21:59:40 2013 +0000 (2013-08-14)
parents 0d6fc7e516c3
children b67414949731
rev   line source
mallory@2652 1 # SliTaz package receipt.
mallory@2652 2
mallory@2652 3 PACKAGE="stjerm-terminal"
mallory@2652 4 SOURCE="stjerm"
mallory@2652 5 VERSION="0.11"
mallory@2652 6 CATEGORY="x-window"
mallory@2652 7 SHORT_DESC="Stjerm is a quake-like terminal emulator. It's window is shown with a key shortcut."
mallory@2652 8 MAINTAINER="mallory@sweetpeople.org"
pascal@15097 9 LICENSE="GPL2"
mallory@2652 10 TARBALL="$SOURCE-$VERSION.tar.gz"
mallory@2652 11 WEB_SITE="http://code.google.com/p/$PACKAGE/"
mallory@2652 12 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
mallory@2652 13
pascal@15097 14 DEPENDS="vte"
pascal@15119 15 BUILD_DEPENDS="vte-dev glib-dev gtk+-dev"
pascal@15097 16
mallory@2652 17 # Rules to configure and make the package.
mallory@2652 18 compile_rules()
mallory@2652 19 {
mallory@2652 20 cd $src
pascal@15097 21 ./autogen.sh
mallory@2652 22 ./configure \
mallory@2652 23 --prefix=/usr \
mallory@2652 24 --infodir=/usr/share/info \
mallory@2652 25 --mandir=/usr/share/man \
mallory@2652 26 $CONFIGURE_ARGS &&
pascal@15097 27 make && make DESTDIR=$DESTDIR install
mallory@2652 28 }
mallory@2652 29
mallory@2652 30 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@2652 31 genpkg_rules()
mallory@2652 32 {
mallory@2652 33 mkdir -p $fs/usr
pascal@15097 34 cp -a $install/usr/bin $fs/usr
mallory@2652 35 }
mallory@2652 36