wok view gxine/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | 9f19aee613be |
children | 8b711bcd4b29 |
line source
1 # SliTaz package receipt.
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 DEPENDS="xine-lib libvorbis gtk+ spidermonkey hal"
9 BUILD_DEPENDS="spidermonkey-dev spidermonkey xine-lib xine-lib-dev xorg-dev \
10 gtk+-dev hal dbus xorg-libXinerama xorg-libXext xorg-libX11 xorg-xextproto perl"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.xine-project.org"
13 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
15 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man \
22 --sysconfdir=/etc \
23 --with-spidermonkey=/usr/include/js \
24 --without-browser-plugin \
25 --disable-lirc \
26 --disable-integration-wizard \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share $fs/etc $fs/usr/lib
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
38 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
39 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
40 cp -a $_pkg/etc $fs
41 }