wok view xine-plugin/receipt @ rev 4954

xarchive: add lrzip support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 17 16:44:15 2010 +0100 (2010-02-17)
parents 5c000a3bef47
children 02bbaa9d12ba
line source
1 # SliTaz package receipt.
3 PACKAGE="xine-plugin"
4 VERSION="1.0.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="Xine media player firefox plugin."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xine-lib firefox"
9 BUILD_DEPENDS="xine-lib xine-lib-dev xorg-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xinehq.de/"
12 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make 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/xine
28 cp -a $_pkg/root/.mozilla/plugins/xineplugin.so $fs/usr/share/xine
29 strip $fs/usr/share/xine/xineplugin.so
30 }
32 # Pre and post install commands for Tazpkg.
33 post_install()
34 {
35 ln -s /usr/share/xine/xineplugin.so $1/usr/lib/firefox-*/plugins/
36 }