wok annotate stjerm-terminal/receipt @ rev 16329

ARM: add xorg-xprop - Used in the new SliTaz Tiny/Touch Screen (sts) desktop
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 10 19:50:37 2014 +0200 (2014-04-10)
parents 3aba2afc1a56
children 5d53e8ccbc8d
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@15628 15 BUILD_DEPENDS="vte-dev glib-dev gtk+-dev automake"
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