diff options
author | sibel <lesibel@free.fr> | 2010-12-23 18:23:03 +0000 |
---|---|---|
committer | sibel <lesibel@free.fr> | 2010-12-23 18:23:03 +0000 |
commit | b8b3d6c850210dc83e9ce7bacf660a25ce5609e7 (patch) | |
tree | eb3b8df0613838ab35c9b43317605db40cae57e4 /acompiler/firefox/Pkgfile | |
parent | 8ba5aab1768bb7414051e7732721b03b8f241fc4 (diff) | |
download | nutyx-pakxe-b8b3d6c850210dc83e9ce7bacf660a25ce5609e7.tar.gz nutyx-pakxe-b8b3d6c850210dc83e9ce7bacf660a25ce5609e7.tar.bz2 nutyx-pakxe-b8b3d6c850210dc83e9ce7bacf660a25ce5609e7.tar.xz nutyx-pakxe-b8b3d6c850210dc83e9ce7bacf660a25ce5609e7.zip |
firefox, deplacement dans extra
Diffstat (limited to 'acompiler/firefox/Pkgfile')
-rw-r--r-- | acompiler/firefox/Pkgfile | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/acompiler/firefox/Pkgfile b/acompiler/firefox/Pkgfile deleted file mode 100644 index 25ed69613..000000000 --- a/acompiler/firefox/Pkgfile +++ /dev/null @@ -1,57 +0,0 @@ -# Description: Navigateur internet de Mozilla -# URL: http://www.mozilla.com/firefox/ -# Maintainer: NuTyX core team -# Packager: thierryn1 at hispeed dot ch -# Depends on: desktop-file-utils, alsa-lib, gtk, libidl, pango, python, curl, nss, libnotify, sqlite3, dbus-glib, libgnomeui - -name=firefox -version=3.6.12 -release=1 -source=(http://releases.mozilla.org/pub/mozilla.org/$name/releases/$version/source/$name-$version.source.tar.bz2\ - http://releases.mozilla.org/pub/mozilla.org/$name/releases/$version/linux-i686/xpi/fr.xpi\ - 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.2 - 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/ - - # Localisation - cd .. - bsdtar xf fr.xpi - cp chrome/fr.jar $PKG/usr/lib/firefox/chrome - sed "s|chrome/||" chrome.manifest > $PKG/usr/lib/firefox/chrome/fr.manifest - cp install.rdf $PKG/usr/lib/firefox - rm $PKG/usr/lib/firefox/chrome/en-US.* - - # Suppression des fichiers headers et des dossiers vides - find $PKG/usr/include/firefox -name "*.h" -delete - find $PKG/usr/include/firefox -type d -empty -delete -} - |