wok view mate-terminal/receipt @ rev 25051

Up terminology (0.7.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 05 10:44:35 2022 +0000 (23 months ago)
parents d6ca18366f41
children 73f36875e5a7
line source
1 # SliTaz package receipt.
3 PACKAGE="mate-terminal"
4 VERSION="1.9.0"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="MATE Terminal is a terminal emulator for the MATE desktop."
8 MAINTAINER="yuripourre@gmail.com"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.mate-desktop.org/"
11 WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL"
12 TAGS="MATE"
13 DEPENDS="gtk+ dconf util-linux-uuid vte mate-desktop harfbuzz"
14 BUILD_DEPENDS="wget cacerts dconf-dev gtk+-dev util-linux-uuid-dev \
15 vte-dev mate-common-dev mate-desktop-dev yelp-tools autoconf automake libtool \
16 itstool harfbuzz-dev"
18 current_version()
19 {
20 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
21 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./autogen.sh \
28 --prefix=/usr \
29 --sysconfdir=/etc \
30 --localstatedir=/var \
31 --disable-static \
32 --disable-scrollkeeper \
33 --with-gnu-ld \
34 $CONFIGURE_ARGS &&
35 make &&
36 make DESTDIR=$DESTDIR install
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 # Saving some space
43 rm -rf $install/usr/share/man
44 rm -rf $install/usr/share/help
46 mkdir -p $fs/usr
47 cp -a $install/usr $fs
48 }