wok-6.x annotate xfmedia/receipt @ rev 17358
Add asterisk-speech-recog
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 18 21:43:05 2014 +0100 (2014-11-18) |
parents | 6990e9de1db4 |
children | d3eb5f4b53ea |
rev | line source |
---|---|
erjo@4887 | 1 # SliTaz package receipt. |
erjo@4887 | 2 |
erjo@4887 | 3 PACKAGE="xfmedia" |
erjo@4887 | 4 VERSION="0.9.2" |
erjo@4887 | 5 CATEGORY="multimedia" |
erjo@4887 | 6 SHORT_DESC="Xfce Media Player" |
erjo@4887 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
erjo@4887 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@4887 | 10 WEB_SITE="http://spuriousinterrupt.org/projects/xfmedia" |
erjo@4887 | 11 WGET_URL="http://spuriousinterrupt.org/files/xfmedia/xfmedia-0.9.2.tar.bz2" |
erjo@4887 | 12 |
erjo@9879 | 13 DEPENDS="libxfcegui4 libexo xine-lib xorg-libXss xorg-libXtst taglib libexo startup-notification" |
pankso@12481 | 14 BUILD_DEPENDS="libexo-dev util-linux-uuid-dev xine-lib-dev intltool libxfcegui4-dev \ |
pascal@12988 | 15 startup-notification-dev libxcb-dev" |
erjo@9879 | 16 |
erjo@4887 | 17 # Rules to configure and make the package. |
erjo@4887 | 18 compile_rules() |
erjo@4887 | 19 { |
erjo@4887 | 20 cd $src |
pascal@12988 | 21 sed -i 's/return xine_trick_mode.*/return 0;/' src/xfmedia-xine.c |
gokhlayeh@8884 | 22 patch -Np1 -i $stuff/xfmedia-dbus-0.6-support.patch |
gokhlayeh@8884 | 23 patch -Np1 -i $stuff/xfmedia-empty-prev-next-fix.patch |
gokhlayeh@8884 | 24 patch -Np1 -i $stuff/xfmedia-exo-0.6.patch |
erjo@4887 | 25 ./configure \ |
erjo@4887 | 26 --prefix=/usr \ |
erjo@4887 | 27 --sysconfdir=/etc \ |
erjo@4887 | 28 --enable-exo \ |
erjo@4887 | 29 --disable-startup-notification \ |
pascal@5856 | 30 $CONFIGURE_ARGS || return 1 |
pascal@5856 | 31 sed -i 's/define HAVE_XSCREENSAVER_EXTENSION .*/undef HAVE_XSCREENSAVER_EXTENSION/' config.h |
gokhlayeh@8884 | 32 make && make install |
erjo@4887 | 33 } |
erjo@4887 | 34 |
erjo@4887 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@4887 | 36 genpkg_rules() |
erjo@4887 | 37 { |
erjo@4887 | 38 mkdir -p $fs/usr/share |
erjo@4887 | 39 |
pascal@15000 | 40 cp -a $install/usr/bin $fs/usr |
pascal@15000 | 41 cp -a $install/etc $fs/ |
pascal@15000 | 42 cp -a $install/usr/share/icons $fs/usr/share |
pascal@15000 | 43 cp -a $install/usr/lib/$PACKAGE $fs/usr/lib |
erjo@4887 | 44 |
erjo@4887 | 45 # Clean up |
erjo@4887 | 46 find $fs/usr/lib -name "*.*a" -exec rm -f {} \; |
erjo@4887 | 47 rm -f $fs/usr/bin/*-remote |
erjo@4887 | 48 |
erjo@4887 | 49 # Strip evrythings |
erjo@4887 | 50 find $fs/usr/lib/ -exec strip -s {} 2> /dev/null \; |
erjo@4887 | 51 } |
erjo@4887 | 52 |