wok diff mate-menus/receipt @ rev 18009

slitaz-base-files: up (270)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 30 02:11:11 2015 +0300 (2015-04-30)
parents
children a9c240804d58
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mate-menus/receipt	Thu Apr 30 02:11:11 2015 +0300
     1.3 @@ -0,0 +1,37 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="mate-menus"
     1.7 +VERSION="1.9.0"
     1.8 +CATEGORY="utilities"
     1.9 +LICENSE="GPL3"
    1.10 +SHORT_DESC="Common package for MATE Desktop applications."
    1.11 +MAINTAINER="yuripourre@gmail.com"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://www.mate-desktop.org/"
    1.14 +WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL"
    1.15 +TAGS="MATE"
    1.16 +DEPENDS="glib python"
    1.17 +BUILD_DEPENDS="wget cacerts autoconf automake gobject-introspection-dev \
    1.18 +libtool itstool mate-common-dev python-dev"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	./autogen.sh                   \
    1.24 +		--prefix=/usr          \
    1.25 +		--sysconfdir=/etc      \
    1.26 +		--localstatedir=/var   \
    1.27 +		--enable-python        \
    1.28 +		--disable-static       \
    1.29 +		$CONFIGURE_ARGS &&
    1.30 +	make &&
    1.31 +	make DESTDIR=$DESTDIR install
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	mkdir -p $fs/usr/lib
    1.38 +	cp -a $install/usr/share $fs/usr
    1.39 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.40 +}