wok annotate stjerm-terminal/receipt @ rev 15628
vlc, weechat, xorg-libXpm, xorg-libXmu, xorg-libXaw: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Dec 09 07:45:53 2013 +0000 (2013-12-09) |
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 |