wok-6.x annotate gnome-desktop/receipt @ rev 19959
slim-theme-control: add compile_rules(); files processing following it.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat May 20 15:38:00 2017 +0300 (2017-05-20) |
parents | 02631cdd0090 |
children | 6e8b1bcb30e2 |
rev | line source |
---|---|
pascal@11214 | 1 # SliTaz package receipt. |
pascal@11214 | 2 |
pascal@11214 | 3 PACKAGE="gnome-desktop" |
pascal@11214 | 4 VERSION="2.28.0" |
pascal@11214 | 5 CATEGORY="x-window" |
pascal@11214 | 6 SHORT_DESC="GNOME Desktop" |
pascal@11214 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
pascal@11214 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@11214 | 10 WEB_SITE="http://www.gnome.org" |
pascal@11214 | 11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" |
pascal@11214 | 12 |
pascal@13760 | 13 DEPENDS="GConf gtk+ startup-notification" |
pascal@13760 | 14 BUILD_DEPENDS="python-dev libxml2-python GConf-dev gnome-doc-utils-dev \ |
pascal@13760 | 15 intltool gtk+-dev" |
pascal@13760 | 16 |
pascal@11214 | 17 # Rules to configure and make the package. |
pascal@11214 | 18 compile_rules() |
pascal@11214 | 19 { |
pascal@11214 | 20 cd $src |
pascal@11214 | 21 ./configure \ |
pascal@11214 | 22 --prefix=/usr \ |
pascal@11214 | 23 --sysconfdir=/etc/gnome \ |
pascal@11214 | 24 --localstatedir=/var/lib \ |
pascal@11214 | 25 --enable-gtk-doc-html=no \ |
pascal@11214 | 26 --enable-gtk-doc=no \ |
pascal@11214 | 27 --disable-scrollkeeper \ |
pascal@11214 | 28 --disable-static \ |
pascal@11214 | 29 --with-gnome-distributor="SliTaz GNU/Linux" \ |
pascal@11214 | 30 $CONFIGURE_ARGS && |
pascal@11214 | 31 make && make DESTDIR=$DESTDIR install |
pascal@11214 | 32 } |
pascal@11214 | 33 |
pascal@11214 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11214 | 35 genpkg_rules() |
pascal@11214 | 36 { |
pascal@11214 | 37 mkdir -p $fs/usr/lib $fs/usr/share |
pascal@13760 | 38 #cp -a $install/etc $fs |
pascal@13760 | 39 cp -a $install/usr/bin $fs/usr |
pascal@13760 | 40 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@13760 | 41 #cp -a $install/usr/share/dbus-1 $fs/usr/share |
pascal@11214 | 42 } |
pascal@11214 | 43 |