wok annotate stjerm-terminal/receipt @ rev 23925
Add Connect-Four
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Aug 23 10:18:23 2020 +0000 (2020-08-23) |
parents | 6135577f4d08 |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
mallory@2652 | 1 # SliTaz package receipt. |
mallory@2652 | 2 |
mallory@2652 | 3 PACKAGE="stjerm-terminal" |
mallory@2652 | 4 SOURCE="stjerm" |
Hans-G?nter@21976 | 5 VERSION="0.18" |
mallory@2652 | 6 CATEGORY="x-window" |
Hans-G?nter@21976 | 7 TAGS="terminal" |
Hans-G?nter@21976 | 8 SHORT_DESC="A quake-like terminal emulator. It's window is shown with a key shortcut." |
mallory@2652 | 9 MAINTAINER="mallory@sweetpeople.org" |
pascal@15097 | 10 LICENSE="GPL2" |
Hans-G?nter@21976 | 11 WEB_SITE="https://github.com/stjerm/stjerm" |
Hans-G?nter@21976 | 12 |
mallory@2652 | 13 TARBALL="$SOURCE-$VERSION.tar.gz" |
Hans-G?nter@21976 | 14 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" |
mallory@2652 | 15 |
pascal@15097 | 16 DEPENDS="vte" |
Hans-G?nter@21976 | 17 BUILD_DEPENDS="automake glib-dev gtk+-dev vte-dev" |
pascal@15097 | 18 |
mallory@2652 | 19 # Rules to configure and make the package. |
mallory@2652 | 20 compile_rules() |
mallory@2652 | 21 { |
pascal@15097 | 22 ./autogen.sh |
Hans-G?nter@21976 | 23 ./configure \ |
Hans-G?nter@21976 | 24 --prefix=/usr \ |
Hans-G?nter@21976 | 25 --infodir=/usr/share/info \ |
Hans-G?nter@21976 | 26 --mandir=/usr/share/man \ |
mallory@2652 | 27 $CONFIGURE_ARGS && |
Hans-G?nter@21976 | 28 make && |
Hans-G?nter@21976 | 29 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 } |