wok view firefox/receipt @ rev 480

UP: xarchive. Packages split in two parts. xarchive, xarchive-extras
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Mar 22 00:57:10 2008 +0100 (2008-03-22)
parents 03c68ab3133c
children 6a766fc831e1
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox"
4 VERSION="2.0.0.12"
5 CATEGORY="network"
6 SHORT_DESC="User friendly, secure and fast web browser."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="xorg-dev gtk+-dev zip libIDL coreutils"
10 TARBALL="$PACKAGE-$VERSION-source.tar.bz2"
11 WEB_SITE="http://www.mozilla.org/"
12 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/source/$TARBALL"
14 # Rules to configure and make the package.
15 #
16 # A long compile time... dont forget to build libidl before and check the
17 # .mozconfig file from the stuff and the stuff/README document.
18 #
19 compile_rules()
20 {
21 # Move the mozilla source tree to $PACKAGE-$VERSION to keep variables
22 # and to have a nice clean.
23 #
24 mv mozilla $PACKAGE-$VERSION
25 cp -a stuff/firefox.mozconfig $src/.mozconfig
26 cd $src
27 ./configure $CONFIGURE_ARGS
28 make
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib $fs/usr/share/pixmaps $fs/etc
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib/$PACKAGE-$VERSION $fs/usr/lib
39 # SliTaz Web site for the home page, bookmarks file and branding.
40 cp -a stuff/browserconfig.properties $fs/usr/lib/$PACKAGE-$VERSION
41 cp -a stuff/bookmarks.html $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
42 cp -a stuff/firefox-branding.js \
43 $fs/usr/lib/$PACKAGE-$VERSION/defaults/pref/
45 # User preference.
46 cp -a stuff/prefs.js $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
47 cp -a stuff/userChrome.css \
48 $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile/chrome
50 # Mozilla default pixmaps and Firefox icon from the stuff.
51 cp -a stuff/mozicon.png $fs/usr/share/pixmaps
52 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/icons
54 # Move default config to /etc/firefox (/usr maybe read-only)
55 mv -f $fs/usr/lib/$PACKAGE-$VERSION/defaults $fs/etc/$PACKAGE
56 ln -s /etc/$PACKAGE $fs/usr/lib/$PACKAGE-$VERSION/defaults
58 # Strip
59 strip -s $fs/usr/lib/$PACKAGE-$VERSION/* 2>/dev/null
61 # Locale fr
62 tar xjf stuff/langpack-fr@firefox.mozilla.org.tar.bz2 \
63 -C $fs/usr/lib/$PACKAGE-$VERSION/extensions
65 # Remove unnecessary files.
66 rm -f $fs/usr/lib/$PACKAGE-$VERSION/TestGtkEmbed
67 }
69 # Pre - Post install command to set default locale.
70 pre_install()
71 {
72 local root
73 root=$1
74 # Remove old libs
75 rm -rf $root/usr/lib/firefox-*
76 }
77 post_install()
78 {
79 local root
80 root=$1
81 if grep -q "fr_*" $root/etc/locale.conf; then
82 sed -i 's/en-US/fr/' \
83 $root/usr/lib/$PACKAGE-$VERSION/defaults/pref/firefox-l10n.js
84 fi
85 }