wok-next annotate stjerm-terminal/receipt @ rev 21013

Small updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Oct 14 05:29:23 2018 +0300 (2018-10-14)
parents 7e6db3d3e591
children f48456621a9d
rev   line source
mallory@2652 1 # SliTaz package receipt.
mallory@2652 2
mallory@2652 3 PACKAGE="stjerm-terminal"
pascal@20392 4 VERSION="0.18"
mallory@2652 5 CATEGORY="x-window"
mallory@2652 6 SHORT_DESC="Stjerm is a quake-like terminal emulator. It's window is shown with a key shortcut."
mallory@2652 7 MAINTAINER="mallory@sweetpeople.org"
pascal@15097 8 LICENSE="GPL2"
al@20888 9 WEB_SITE="https://github.com/stjerm/stjerm"
al@20888 10 REPOLOGY="stjerm"
al@20888 11
al@20888 12 SOURCE="stjerm"
mallory@2652 13 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@20392 14 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
al@17501 15 TAGS="terminal"
mallory@2652 16
al@20393 17 DEPENDS="vte-gtk2"
pascal@20392 18 BUILD_DEPENDS="vte-gtk2-dev glib-dev gtk+-dev automake"
pascal@15097 19
mallory@2652 20 # Rules to configure and make the package.
mallory@2652 21 compile_rules()
mallory@2652 22 {
pascal@15097 23 ./autogen.sh
mallory@2652 24 ./configure \
mallory@2652 25 --prefix=/usr \
mallory@2652 26 --infodir=/usr/share/info \
mallory@2652 27 --mandir=/usr/share/man \
mallory@2652 28 $CONFIGURE_ARGS &&
pascal@15097 29 make && make DESTDIR=$DESTDIR install
mallory@2652 30 }
mallory@2652 31
mallory@2652 32 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@2652 33 genpkg_rules()
mallory@2652 34 {
mallory@2652 35 mkdir -p $fs/usr
pascal@15097 36 cp -a $install/usr/bin $fs/usr
mallory@2652 37 }