wok view mate-terminal/receipt @ rev 21923

updated smartmontools (5.41 -> 7.0)
author Hans-G?nter Theisgen
date Sat Oct 05 19:43:37 2019 +0100 (2019-10-05)
parents e863f2041090
children 5ea0ce1cecc0
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 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 --disable-static \
26 --disable-scrollkeeper \
27 --with-gnu-ld \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 # Saving some space
37 rm -rf $install/usr/share/man
38 rm -rf $install/usr/share/help
40 mkdir -p $fs/usr
41 cp -a $install/usr $fs
42 }