wok-next view gxine/receipt @ rev 20661

Unification of the patch system
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu May 10 21:12:00 2018 +0300 (2018-05-10)
parents 757d032c55c7
children f99935f1778a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gxine"
4 VERSION="0.5.905"
5 CATEGORY="multimedia"
6 SHORT_DESC="GTK+ Xine media player user interface"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.xine-project.org"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
14 BUILD_DEPENDS="shared-mime-info spidermonkey-dev xine-lib-dev xorg-dev \
15 dbus-dev gtk+-dev xorg-libXinerama-dev xorg-libXext-dev xorg-xextproto perl \
16 xorg-libXv-dev xorg-videoproto xorg-xf86vidmodeproto"
18 compile_rules() {
19 # Fix for glib2 (-lm)
20 sed -i "/<glib\//d" src/*
21 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
23 #--with-logo-format=image
24 ./configure \
25 --with-dbus \
26 --with-spidermonkey=/usr/include/js \
27 --without-browser-plugin \
28 --without-hal \
29 --disable-lirc \
30 --disable-deprecated \
31 --disable-integration-wizard \
32 --disable-own-playlist-parsers \
33 VENDOR_PKG_VERSION="$VERSION; SliTaz GNU/Linux" \
34 $CONFIGURE_ARGS &&
35 make &&
36 make DESTDIR=$DESTDIR install
37 }
39 genpkg_rules() {
40 copy @std
41 DEPENDS="xine-lib libvorbis gtk+ spidermonkey dbus"
42 }