wok annotate stjerm-terminal/receipt @ rev 20679

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 26 12:26:47 2019 +0100 (2019-01-26)
parents 5d53e8ccbc8d
children a7e6fbf784fc
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"
pascal@20679 11 WEB_SITE="https://github.com/stjerm/stjerm"
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