wok annotate mate-menus/receipt @ rev 20983

goaccess: WGET_URL modified
author Hans-G?nter Theisgen
date Wed Mar 06 17:27:54 2019 +0100 (2019-03-06)
parents a9c240804d58
children 5ea0ce1cecc0
rev   line source
yuripourre@17800 1 # SliTaz package receipt.
yuripourre@17800 2
yuripourre@17800 3 PACKAGE="mate-menus"
yuripourre@17800 4 VERSION="1.9.0"
yuripourre@17800 5 CATEGORY="utilities"
yuripourre@17800 6 LICENSE="GPL3"
yuripourre@17800 7 SHORT_DESC="Common package for MATE Desktop applications."
yuripourre@17800 8 MAINTAINER="yuripourre@gmail.com"
yuripourre@17800 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
yuripourre@17800 10 WEB_SITE="http://www.mate-desktop.org/"
yuripourre@17800 11 WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL"
yuripourre@17800 12 TAGS="MATE"
yuripourre@17800 13 DEPENDS="glib python"
yuripourre@17800 14 BUILD_DEPENDS="wget cacerts autoconf automake gobject-introspection-dev \
yuripourre@17800 15 libtool itstool mate-common-dev python-dev"
yuripourre@17800 16
yuripourre@17800 17 # Rules to configure and make the package.
yuripourre@17800 18 compile_rules()
yuripourre@17800 19 {
yuripourre@17800 20 ./autogen.sh \
yuripourre@17800 21 --prefix=/usr \
yuripourre@17800 22 --sysconfdir=/etc \
yuripourre@17800 23 --localstatedir=/var \
yuripourre@17800 24 --enable-python \
yuripourre@17800 25 --disable-static \
yuripourre@17800 26 $CONFIGURE_ARGS &&
yuripourre@17800 27 make &&
yuripourre@17800 28 make DESTDIR=$DESTDIR install
yuripourre@17800 29 }
yuripourre@17800 30
yuripourre@17800 31 # Rules to gen a SliTaz package suitable for Tazpkg.
yuripourre@17800 32 genpkg_rules()
yuripourre@17800 33 {
yuripourre@18505 34 mkdir -p $fs/usr/lib/python2.7/site-packages/
yuripourre@17800 35 cp -a $install/usr/share $fs/usr
yuripourre@17800 36 cp -a $install/usr/lib/*.so* $fs/usr/lib
yuripourre@18505 37 cp -a $install/usr/lib/python2.7/site-packages/*.so* $fs/usr/lib/python2.7/site-packages/
psychomaniak@18277 38 cp -a $install/etc $fs
yuripourre@17800 39 }