wok-current annotate xfce-utils/receipt @ rev 15255
gammu: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Sep 23 21:06:53 2013 +0000 (2013-09-23) |
parents | 73641efed1cc |
children | 36be6a8ba3dc |
rev | line source |
---|---|
erjo@2074 | 1 # SliTaz package receipt. |
erjo@2074 | 2 |
erjo@2074 | 3 PACKAGE="xfce-utils" |
slaxemulator@8281 | 4 VERSION="4.8.1" |
erjo@2074 | 5 CATEGORY="x-window" |
erjo@2074 | 6 SHORT_DESC="Xfce utilities" |
erjo@2074 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
erjo@2074 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@2074 | 10 WEB_SITE="http://www.xfce.org" |
slaxemulator@8289 | 11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL" |
erjo@2074 | 12 |
erjo@9869 | 13 DEPENDS="libxfce4util libxfce4ui startup-notification dbus-glib" |
erjo@9869 | 14 BUILD_DEPENDS="libxfce4util-dev libxfce4ui-dev intltool startup-notification-dev \ |
pankso@12481 | 15 util-linux-uuid-dev dbus-glib-dev" |
erjo@9869 | 16 |
erjo@2074 | 17 # Rules to configure and make the package. |
erjo@2074 | 18 compile_rules() |
erjo@2074 | 19 { |
erjo@2074 | 20 cd $src |
erjo@2074 | 21 ./configure --prefix=/usr \ |
erjo@2074 | 22 --sysconfdir=/etc \ |
erjo@2074 | 23 --enable-dbus \ |
erjo@2074 | 24 --disable-debug \ |
erjo@8020 | 25 --with-browser=browser \ |
erjo@4136 | 26 --with-terminal=xterm \ |
erjo@2074 | 27 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@9869 | 28 make && make DESTDIR=$DESTDIR install |
erjo@2074 | 29 } |
erjo@2074 | 30 |
erjo@2074 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2074 | 32 genpkg_rules() |
erjo@2074 | 33 { |
erjo@2074 | 34 mkdir -p $fs/usr $fs/usr/share/locale |
pascal@15002 | 35 cp -a $install/usr/bin $fs/usr |
pascal@15002 | 36 cp -a $install/etc $fs/ |
pascal@15002 | 37 cp -a $install/usr/share/icons $fs/usr/share |
pascal@15002 | 38 cp -a $install/usr/share/dbus* $fs/usr/share |
pascal@15002 | 39 cp -a $install/usr/share/icons $fs/usr/share |
pascal@15002 | 40 cp -a $install/usr/share/locale/fr $fs/usr/share/locale |
erjo@2074 | 41 |
erjo@4179 | 42 #Fix perms |
erjo@4179 | 43 chmod 755 $fs/usr/bin/* |
erjo@2074 | 44 } |
erjo@2074 | 45 |