# HG changeset patch # User Yuri Pourre # Date 1426915893 10800 # Node ID 625b31ba5833e40a771f0213aec0d790136c4c6e # Parent b8022c0e04db8b761335c7a3d4ce5a80620ea7d9 Add mate-menus diff -r b8022c0e04db -r 625b31ba5833 mate-menus-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mate-menus-dev/receipt Sat Mar 21 02:31:33 2015 -0300 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="mate-menus-dev" +VERSION="1.9.0" +CATEGORY="utilities" +LICENSE="GPL3" +SHORT_DESC="Common package for MATE Desktop applications." +MAINTAINER="yuripourre@gmail.com" +WEB_SITE="http://www.mate-desktop.org/" +WANTED="mate-menus" +DEPENDS="mate-menus" +TAGS="MATE" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/include + cp -a $install/usr/lib/*.la $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include/* $fs/usr/include +} diff -r b8022c0e04db -r 625b31ba5833 mate-menus/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mate-menus/receipt Sat Mar 21 02:31:33 2015 -0300 @@ -0,0 +1,37 @@ +# SliTaz package receipt. + +PACKAGE="mate-menus" +VERSION="1.9.0" +CATEGORY="utilities" +LICENSE="GPL3" +SHORT_DESC="Common package for MATE Desktop applications." +MAINTAINER="yuripourre@gmail.com" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.mate-desktop.org/" +WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL" +TAGS="MATE" +DEPENDS="glib python" +BUILD_DEPENDS="wget cacerts autoconf automake gobject-introspection-dev \ +libtool itstool mate-common-dev python-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./autogen.sh \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --enable-python \ + --disable-static \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/share $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib +}