# HG changeset patch # User Christophe Lincoln # Date 1306416397 -7200 # Node ID 81939592d3c4553d98109f3f547770c838757528 # Parent 43441506d5f5c3eb9559c217fd38b7ee93ba167d parole: fix bdeps and clean diff -r 43441506d5f5 -r 81939592d3c4 parole/receipt --- a/parole/receipt Thu May 26 15:12:29 2011 +0200 +++ b/parole/receipt Thu May 26 15:26:37 2011 +0200 @@ -5,24 +5,26 @@ CATEGORY="multimedia" SHORT_DESC="Media Player for Xfce." MAINTAINER="erjo@slitaz.org" -DEPENDS="libxfcegui4 libxfce4util dbus-glib libgio gst-plugins-base taglib \ -startup-notification libnotify" -BUILD_DEPENDS="intltool gst-plugins-base" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://goodies.xfce.org/projects/applications/parole" WGET_URL="http://archive.xfce.org/src/apps/parole/0.2/$TARBALL" +DEPENDS="libxfcegui4 libxfce4util dbus-glib libgio gst-plugins-base taglib \ +startup-notification libnotify gstreamer util-linux-ng-uuid" +BUILD_DEPENDS="intltool libxfcegui4-dev libxfce4util-dev dbus-glib-dev \ +libgio-dev gst-plugins-base-dev taglib-dev startup-notification-dev \ +libnotify-dev gstreamer-dev util-linux-ng-uuid-dev" + # Rules to configure and make the package. compile_rules() { cd $src ./configure \ - --prefix=/usr \ --libexecdir=/usr/lib/$PACKAGE \ --disable-debug \ --disable-power-manager-plugin \ $CONFIGURE_ARGS && - make && make DESTDIR=$PWD/_pkg install + make && install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -36,12 +38,11 @@ cp -a $_pkg/usr/share/icons/hicolor $fs/usr/share/icons cp -a $_pkg/usr/share/parole $fs/usr/share - cd $fs/usr/share/pixmaps ; ln -s ../icons/hicolor/32x32/apps/$PACKAGE.png ; cd - + cd $fs/usr/share/pixmaps + ln -s ../icons/hicolor/32x32/apps/$PACKAGE.png ; cd - # Clean-up & strip rm -rf $fs/usr/share/icons/hicolor/scalable find $fs/usr/lib -exec strip -s {} 2> /dev/null \; - - }