wok annotate xfmedia/receipt @ rev 18408
open-vm-tools: add wget and cacerts as deps
author | Nathan Neulinger <nneul@neulinger.org> |
---|---|
date | Sat Sep 19 14:21:42 2015 +0000 (2015-09-19) |
parents | 380ffe05937a |
children | 0c95118e9932 |
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" |
pascal@17869 | 11 WGET_URL="http://spuriousinterrupt.org/files/xfmedia/$TARBALL" |
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 { |
pascal@12988 | 20 sed -i 's/return xine_trick_mode.*/return 0;/' src/xfmedia-xine.c |
gokhlayeh@8884 | 21 patch -Np1 -i $stuff/xfmedia-dbus-0.6-support.patch |
gokhlayeh@8884 | 22 patch -Np1 -i $stuff/xfmedia-empty-prev-next-fix.patch |
gokhlayeh@8884 | 23 patch -Np1 -i $stuff/xfmedia-exo-0.6.patch |
erjo@4887 | 24 ./configure \ |
erjo@4887 | 25 --prefix=/usr \ |
erjo@4887 | 26 --sysconfdir=/etc \ |
erjo@4887 | 27 --enable-exo \ |
erjo@4887 | 28 --disable-startup-notification \ |
pascal@5856 | 29 $CONFIGURE_ARGS || return 1 |
pascal@5856 | 30 sed -i 's/define HAVE_XSCREENSAVER_EXTENSION .*/undef HAVE_XSCREENSAVER_EXTENSION/' config.h |
gokhlayeh@8884 | 31 make && make install |
erjo@4887 | 32 } |
erjo@4887 | 33 |
erjo@4887 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@4887 | 35 genpkg_rules() |
erjo@4887 | 36 { |
erjo@4887 | 37 mkdir -p $fs/usr/share |
erjo@4887 | 38 |
pascal@15000 | 39 cp -a $install/usr/bin $fs/usr |
pascal@15000 | 40 cp -a $install/etc $fs/ |
pascal@15000 | 41 cp -a $install/usr/share/icons $fs/usr/share |
pascal@15000 | 42 cp -a $install/usr/lib/$PACKAGE $fs/usr/lib |
erjo@4887 | 43 |
erjo@4887 | 44 # Clean up |
erjo@4887 | 45 find $fs/usr/lib -name "*.*a" -exec rm -f {} \; |
erjo@4887 | 46 rm -f $fs/usr/bin/*-remote |
erjo@4887 | 47 |
erjo@4887 | 48 # Strip evrythings |
erjo@4887 | 49 find $fs/usr/lib/ -exec strip -s {} 2> /dev/null \; |
erjo@4887 | 50 } |