wok-4.x view stjerm-terminal/receipt @ rev 12477

Up openssl 1.1.1n (bump packages curl, git, wget, python), up cherokee 1.2.104 and bdeps (automake, openldap, cyrus-sasl)
author Stanislas Leduc <shann@slitaz.org>
date Sun Apr 02 14:34:44 2023 +0000 (14 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="stjerm-terminal"
4 SOURCE="stjerm"
5 VERSION="0.11"
6 CATEGORY="x-window"
7 SHORT_DESC="Stjerm is a quake-like terminal emulator. It's window is shown with a key shortcut."
8 MAINTAINER="mallory@sweetpeople.org"
9 DEPENDS="vte"
10 BUILD_DEPENDS="vte-dev"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://code.google.com/p/$PACKAGE/"
13 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./autogen.sh
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }