wok diff mozplugger/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents
children bb009a6ef036
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mozplugger/receipt	Thu Oct 04 11:53:21 2012 +0200
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="mozplugger"
     1.7 +VERSION="1.14.3"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="A Mozilla & Firefox multimedia plugin."
    1.10 +MAINTAINER="slaxemulator@gmail.com"
    1.11 +DEPENDS="xorg-libX11"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://mozplugger.mozdev.org"
    1.14 +WGET_URL="$WEB_SITE/files/$TARBALL"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	cd $src
    1.20 +	./configure --prefix=/usr --sysconfdir=/etc && 
    1.21 +	make
    1.22 +}
    1.23 +
    1.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.25 +genpkg_rules()
    1.26 +{
    1.27 +	mkdir -p $fs/usr/lib/mozilla/plugins \
    1.28 +		$fs/etc \
    1.29 +		$fs/usr/bin
    1.30 +	cp -a $src/mozplugger.so $fs/usr/lib/mozilla/plugins
    1.31 +	cp -a $src/mozpluggerrc $fs/etc
    1.32 +	cp -a $src/mozplugger-helper $fs/usr/bin
    1.33 +	cp -a $src/mozplugger-controller $fs/usr/bin
    1.34 +	cp -a $src/mozplugger-linker $fs/usr/bin
    1.35 +}
    1.36 +