wok-next rev 10599
parole: fix bdeps and clean
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu May 26 15:26:37 2011 +0200 (2011-05-26) |
parents | 43441506d5f5 |
children | 71f47827e1ad |
files | parole/receipt |
line diff
1.1 --- a/parole/receipt Thu May 26 15:12:29 2011 +0200 1.2 +++ b/parole/receipt Thu May 26 15:26:37 2011 +0200 1.3 @@ -5,24 +5,26 @@ 1.4 CATEGORY="multimedia" 1.5 SHORT_DESC="Media Player for Xfce." 1.6 MAINTAINER="erjo@slitaz.org" 1.7 -DEPENDS="libxfcegui4 libxfce4util dbus-glib libgio gst-plugins-base taglib \ 1.8 -startup-notification libnotify" 1.9 -BUILD_DEPENDS="intltool gst-plugins-base" 1.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.11 WEB_SITE="http://goodies.xfce.org/projects/applications/parole" 1.12 WGET_URL="http://archive.xfce.org/src/apps/parole/0.2/$TARBALL" 1.13 1.14 +DEPENDS="libxfcegui4 libxfce4util dbus-glib libgio gst-plugins-base taglib \ 1.15 +startup-notification libnotify gstreamer util-linux-ng-uuid" 1.16 +BUILD_DEPENDS="intltool libxfcegui4-dev libxfce4util-dev dbus-glib-dev \ 1.17 +libgio-dev gst-plugins-base-dev taglib-dev startup-notification-dev \ 1.18 +libnotify-dev gstreamer-dev util-linux-ng-uuid-dev" 1.19 + 1.20 # Rules to configure and make the package. 1.21 compile_rules() 1.22 { 1.23 cd $src 1.24 ./configure \ 1.25 - --prefix=/usr \ 1.26 --libexecdir=/usr/lib/$PACKAGE \ 1.27 --disable-debug \ 1.28 --disable-power-manager-plugin \ 1.29 $CONFIGURE_ARGS && 1.30 - make && make DESTDIR=$PWD/_pkg install 1.31 + make && install 1.32 } 1.33 1.34 # Rules to gen a SliTaz package suitable for Tazpkg. 1.35 @@ -36,12 +38,11 @@ 1.36 cp -a $_pkg/usr/share/icons/hicolor $fs/usr/share/icons 1.37 cp -a $_pkg/usr/share/parole $fs/usr/share 1.38 1.39 - cd $fs/usr/share/pixmaps ; ln -s ../icons/hicolor/32x32/apps/$PACKAGE.png ; cd - 1.40 + cd $fs/usr/share/pixmaps 1.41 + ln -s ../icons/hicolor/32x32/apps/$PACKAGE.png ; cd - 1.42 1.43 # Clean-up & strip 1.44 rm -rf $fs/usr/share/icons/hicolor/scalable 1.45 find $fs/usr/lib -exec strip -s {} 2> /dev/null \; 1.46 - 1.47 - 1.48 } 1.49