wok rev 17800

Add mate-menus
author Yuri Pourre <yuripourre@gmail.com>
date Sat Mar 21 02:31:33 2015 -0300 (2015-03-21)
parents b8022c0e04db
children f742a7b4297b
files mate-menus-dev/receipt mate-menus/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mate-menus-dev/receipt	Sat Mar 21 02:31:33 2015 -0300
     1.3 @@ -0,0 +1,21 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="mate-menus-dev"
     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 +WEB_SITE="http://www.mate-desktop.org/"
    1.13 +WANTED="mate-menus"
    1.14 +DEPENDS="mate-menus"
    1.15 +TAGS="MATE"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr/lib $fs/usr/include
    1.21 +	cp -a $install/usr/lib/*.la $fs/usr/lib
    1.22 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.23 +	cp -a $install/usr/include/* $fs/usr/include
    1.24 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/mate-menus/receipt	Sat Mar 21 02:31:33 2015 -0300
     2.3 @@ -0,0 +1,37 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="mate-menus"
     2.7 +VERSION="1.9.0"
     2.8 +CATEGORY="utilities"
     2.9 +LICENSE="GPL3"
    2.10 +SHORT_DESC="Common package for MATE Desktop applications."
    2.11 +MAINTAINER="yuripourre@gmail.com"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.13 +WEB_SITE="http://www.mate-desktop.org/"
    2.14 +WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL"
    2.15 +TAGS="MATE"
    2.16 +DEPENDS="glib python"
    2.17 +BUILD_DEPENDS="wget cacerts autoconf automake gobject-introspection-dev \
    2.18 +libtool itstool mate-common-dev python-dev"
    2.19 +
    2.20 +# Rules to configure and make the package.
    2.21 +compile_rules()
    2.22 +{
    2.23 +	./autogen.sh                   \
    2.24 +		--prefix=/usr          \
    2.25 +		--sysconfdir=/etc      \
    2.26 +		--localstatedir=/var   \
    2.27 +		--enable-python        \
    2.28 +		--disable-static       \
    2.29 +		$CONFIGURE_ARGS &&
    2.30 +	make &&
    2.31 +	make DESTDIR=$DESTDIR install
    2.32 +}
    2.33 +
    2.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.35 +genpkg_rules()
    2.36 +{
    2.37 +	mkdir -p $fs/usr/lib
    2.38 +	cp -a $install/usr/share $fs/usr
    2.39 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.40 +}