wok view libfirefox/receipt @ rev 11765

up mtr (0.82) and added description
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Feb 22 17:33:57 2012 -0800 (2012-02-22)
parents 9771335d6c88
children 4cbd61af2eb0
line source
1 # SliTaz package receipt.
3 PACKAGE="libfirefox"
4 VERSION="10.0.1"
5 CATEGORY="network"
6 SHORT_DESC="firefox lib files"
7 MAINTAINER="jozee@slitaz.org"
8 WANTED="firefox"
9 WEB_SITE="http://www.mozilla.org/"
11 DEPENDS="gtk+ sqlite dbus dbus-glib glib jpeg xorg-libX11 xorg-libXdamage \
12 alsa-lib xorg-libXt"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/usr/lib/$WANTED
18 cp -a $_pkg/usr/lib/$WANTED/*.so $fs/usr/lib/$WANTED
20 # remove some firefox libs (in firefox receipts)
21 rm -rf $fs/usr/lib/firefox/libxul.so
23 # Remove unnecessary files (copied from firefox receipt)
24 rm -rf $fs/usr/lib/firefox/libsqlite3.so
25 }
27 post_install()
28 {
29 # Export firefox libraries
30 for i in /usr/lib/firefox/*.so ; do
31 [ -f $i ] && ln -sf $i /usr/lib
32 done
33 }