wok view mozplugger/receipt @ rev 19132

pcmanfm: add tazpkg-get action
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sun May 15 02:07:14 2016 +0200 (2016-05-15)
parents 6b201f405c6b
children 1d27173881e7
line source
1 # SliTaz package receipt.
3 PACKAGE="mozplugger"
4 VERSION="1.14.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="A Mozilla & Firefox multimedia plugin."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://mozplugger.mozdev.org"
11 WGET_URL="$WEB_SITE/files/$TARBALL"
13 DEPENDS="xorg-libX11"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --sysconfdir=/etc &&
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib/mozilla/plugins \
27 $fs/etc \
28 $fs/usr/bin
29 cp -a $src/mozplugger.so $fs/usr/lib/mozilla/plugins
30 cp -a $src/mozpluggerrc $fs/etc
31 cp -a $src/mozplugger-helper $fs/usr/bin
32 cp -a $src/mozplugger-controller $fs/usr/bin
33 cp -a $src/mozplugger-linker $fs/usr/bin
34 }