wok annotate xfmedia/receipt @ rev 22574

updated bzflag (2.4.0 -> 2.4.18)
author Hans-G?nter Theisgen
date Mon Jan 06 15:51:49 2020 +0100 (2020-01-06)
parents d3eb5f4b53ea
children 535c806240cc
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@19750 15 startup-notification-dev libxcb-dev xcb-util-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 }