wok view terminology/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents 669f61f44760
children
line source
1 # SliTaz package receipt.
3 PACKAGE="terminology"
4 VERSION="0.7.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Terminology is a terminal emulator with innovative features."
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://www.enlightenment.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="http://download.enlightenment.org/rel/apps/terminology/$TARBALL"
12 TAGS="e enlightenment terminal"
13 #HOST_ARCH="i486 arm"
15 DEPENDS="elementary ethumb"
16 BUILD_DEPENDS="elementary-dev ethumb-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - http://download.enlightenment.org/rel/apps/terminology/ 2>/dev/null | \
22 sed '/terminology-[0-9]/!d;/a[0-9].tar/d;s|.*terminology-||;s|.tar.*||' | sort -Vr | sed q
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 export CFLAGS="$CFLAGS -fvisibility=hidden"
29 export LDFLAGS="$LDFLAGS -fvisibility=hidden"
30 ./configure \
31 -with-maximum-log-level=1 \
32 $CONFIGURE_ARGS &&
33 make $MAKEFLAGS && make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 cp -a $install/* $fs
40 }