wok annotate mate-terminal/receipt @ rev 25164

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