summaryrefslogtreecommitdiffstats
path: root/extra/firefox/Pkgfile
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-10 21:32:27 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-10 21:32:27 +0200
commitcc91c9fbade087cfa62e7d50a1b2835d358663f7 (patch)
treeacdd63ff39de32f19b89f9df8c1e8b20a2860dd0 /extra/firefox/Pkgfile
parent4fc8d98ab2c2ca011a6ddd593bc52de581a43ef6 (diff)
downloadnutyx-extra-cc91c9fbade087cfa62e7d50a1b2835d358663f7.tar.gz
nutyx-extra-cc91c9fbade087cfa62e7d50a1b2835d358663f7.tar.bz2
nutyx-extra-cc91c9fbade087cfa62e7d50a1b2835d358663f7.tar.xz
nutyx-extra-cc91c9fbade087cfa62e7d50a1b2835d358663f7.zip
Ajout de firefox#3.5.2-1
Diffstat (limited to 'extra/firefox/Pkgfile')
-rw-r--r--extra/firefox/Pkgfile41
1 files changed, 41 insertions, 0 deletions
diff --git a/extra/firefox/Pkgfile b/extra/firefox/Pkgfile
new file mode 100644
index 000000000..dcddd0e96
--- /dev/null
+++ b/extra/firefox/Pkgfile
@@ -0,0 +1,41 @@
+# Description: Mozilla Web Browser Component
+# URL: http://www.mozilla.com/firefox/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: xulrunner
+
+name=firefox
+version=3.5.2
+release=1
+source=(http://releases.mozilla.org/pub/mozilla.org/$name/releases/$version/source/$name-$version-source.tar.bz2
+ mozconfig firefox.desktop)
+
+build() {
+ export MOZ_CO_PROJECT=browser
+ export BUILD_OFFICIAL=1
+ export MOZILLA_OFFICIAL=1
+ export MOZILLA_FIVE_HOME=/usr/lib/firefox
+
+ cd mozilla-1.9.1
+ sed -e "s/#CFLAGS#/$CFLAGS/" $SRC/mozconfig > .mozconfig
+ ./configure
+ make
+
+ install -d \
+ $PKG$MOZILLA_FIVE_HOME \
+ $PKG/usr/bin \
+ $PKG/usr/share/idl/firefox \
+ $PKG/usr/include/firefox
+
+ cp -rL dist/bin/* $PKG$MOZILLA_FIVE_HOME
+ ln -s /usr/lib/firefox/firefox $PKG/usr/bin/firefox
+
+ # devel stuff
+ cp -frL dist/idl/* $PKG/usr/share/idl/firefox/
+ cp -frL dist/include/* $PKG/usr/include/firefox/
+install -m755 -d $PKG/usr/share/{applications,pixmaps}
+install -m644 browser/branding/unofficial/default48.png \
+ $PKG/usr/share/pixmaps/firefox.png
+install -m644 ../firefox.desktop \
+ $PKG/usr/share/applications/
+}