wok view mate-common/receipt @ rev 17639

Up: mercurial 3.3
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 14 21:12:48 2015 +0000 (2015-02-14)
parents fdcad4c2f551
children e863f2041090
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"
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 }