wok-current view smplayer/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 4897058add72
children 0aa61c864a5b
line source
1 # SliTaz package receipt.
3 PACKAGE="smplayer"
4 VERSION="0.6.9"
5 CATEGORY="multimedia"
6 SHORT_DESC="QT-based front-end for MPlayer"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="mplayer-svn libQtCore libQtGui libQtXml gcc-lib-base"
9 BUILD_DEPENDS="mplayer-svn Qt4-dev qmake libQtCore libQtGui libQtXml libQtNetwork libegl-mesa"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://smplayer.sourceforge.net/"
12 WGET_URL="http://downloads.sourceforge.net/sourceforge/$PACKAGE/$TARBALL"
13 TAGS="player audio video movie"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make PREFIX=/usr &&
20 make PREFIX=/usr DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share $fs/usr/share/applications
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
31 # Remove extra translations or locales
32 rm $fs/usr/share/$PACKAGE/translations/*
33 cp -a $_pkg/usr/share/$PACKAGE/translations/smplayer_en_US.qm \
34 $_pkg/usr/share/$PACKAGE/translations/smplayer_fr.qm \
35 $fs/usr/share/$PACKAGE/translations/
37 # copy .desktop files
38 cp -a stuff/smplayer.desktop $fs/usr/share/applications/
39 cp -a stuff/smplayer_enqueue.desktop $fs/usr/share/applications/
40 }