wok-next annotate stjerm-terminal/receipt @ rev 19280
blueman: update bdeps.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Jul 05 21:06:25 2016 +0300 (2016-07-05) |
parents | b67414949731 |
children | a56cc27b9077 |
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" |
al@17501 | 13 TAGS="terminal" |
mallory@2652 | 14 |
pascal@15097 | 15 DEPENDS="vte" |
pascal@15628 | 16 BUILD_DEPENDS="vte-dev glib-dev gtk+-dev automake" |
pascal@15097 | 17 |
mallory@2652 | 18 # Rules to configure and make the package. |
mallory@2652 | 19 compile_rules() |
mallory@2652 | 20 { |
mallory@2652 | 21 cd $src |
pascal@15097 | 22 ./autogen.sh |
mallory@2652 | 23 ./configure \ |
mallory@2652 | 24 --prefix=/usr \ |
mallory@2652 | 25 --infodir=/usr/share/info \ |
mallory@2652 | 26 --mandir=/usr/share/man \ |
mallory@2652 | 27 $CONFIGURE_ARGS && |
pascal@15097 | 28 make && make DESTDIR=$DESTDIR install |
mallory@2652 | 29 } |
mallory@2652 | 30 |
mallory@2652 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2652 | 32 genpkg_rules() |
mallory@2652 | 33 { |
mallory@2652 | 34 mkdir -p $fs/usr |
pascal@15097 | 35 cp -a $install/usr/bin $fs/usr |
mallory@2652 | 36 } |
mallory@2652 | 37 |