wok view mozplugger/receipt @ rev 22351

umfpack: hide metis-4.0 missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 16:07:36 2019 +0100 (2019-11-18)
parents bb009a6ef036
children b9659e3c2111
line source
1 # SliTaz package receipt.
3 PACKAGE="mozplugger"
4 VERSION="2.1.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Generic Mozilla plugin."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://mozplugger.mozdev.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}files/$TARBALL"
14 DEPENDS="xorg-libX11"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc &&
22 make
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib/mozilla/plugins
29 mkdir -p $fs/etc
30 mkdir -p $fs/usr/bin
32 cp -a $src/mozplugger.so $fs/usr/lib/mozilla/plugins
33 cp -a $src/mozpluggerrc $fs/etc
34 cp -a $src/mozplugger-helper $fs/usr/bin
35 cp -a $src/mozplugger-controller $fs/usr/bin
36 cp -a $src/mozplugger-linker $fs/usr/bin
37 }