wok-current view mate-common/receipt @ rev 20082
update: from 0.3.0.10 (2017-08-02) to 0.3.1.7 (2017-09-18)
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Wed Sep 27 18:10:35 2017 +0000 (2017-09-27) |
parents | ea0b0780b9d9 |
children | 51b6d5cc79ab |
line source
1 # SliTaz package receipt.
3 PACKAGE="mate-common"
4 VERSION="1.9.0"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="Common package for MATE applications."
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=""
14 BUILD_DEPENDS="wget cacerts autoconf automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./autogen.sh \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/mate-common $fs/usr/share
33 rm -rf $install/usr/share/man
34 }