get-scripts rev 17

Add palemoon
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 31 09:35:01 2014 +0000 (2014-05-31)
parents ca290394cc08
children 587ada03bde0
files palemoon
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/palemoon	Sat May 31 09:35:01 2014 +0000
     1.3 @@ -0,0 +1,55 @@
     1.4 +VERSION="24.5.0"
     1.5 +SHORT_DESC="Browser based on Firefox that's optimised for performance."
     1.6 +MAINTAINER="al.bobylev@gmail.com"
     1.7 +CATEGORY="network"
     1.8 +LICENSE="MPL2"
     1.9 +WEB_SITE="http://www.palemoon.org/"
    1.10 +TARBALL=$PACKAGE-$VERSION.en-US.linux-i686.tar.bz2
    1.11 +WGET_URL=http://sourceforge.net/projects/pm4linux/files/$VERSION/$TARBALL
    1.12 +TAGS="browser"
    1.13 +DEPENDS="dbus-glib"
    1.14 +
    1.15 +mkdir -p $PACKAGE-$VERSION/fs/opt
    1.16 +busybox wget -O - $WGET_URL | tar -xjf - -C $PACKAGE-$VERSION/fs/opt
    1.17 +[ -d $PACKAGE-$VERSION/fs/opt/palemoon ] ||
    1.18 +abort_package "Could not download $TARBALL from $URL. Exiting."
    1.19 +
    1.20 +DESKTOP=$PACKAGE-$VERSION/fs/usr/share/applications/palemoon.desktop
    1.21 +mkdir -p $(dirname $DESKTOP)
    1.22 +cat > $DESKTOP << EOA
    1.23 +[Desktop Entry]
    1.24 +Type=Application
    1.25 +Name=Palemoon
    1.26 +Exec=/opt/palemoon/palemoon %u
    1.27 +Icon=/opt/palemoon/browser/icons/mozicon128.png
    1.28 +StartupNotify=true
    1.29 +Categories=GTK;Network;WebBrowser;
    1.30 +MimeType=text/html;text/xml;application/xhtml+xml;application/xml;
    1.31 +EOA
    1.32 +
    1.33 +cat > $PACKAGE-$VERSION/description.txt << EOD
    1.34 +Description
    1.35 +===========
    1.36 +
    1.37 +Pale Moon is an open source, web browser based on Firefox focusing on efficiency
    1.38 +by leaving out unnecessary features and making optimizations, while maintaining
    1.39 +compatibility with Firefox extensions and themes.
    1.40 +
    1.41 +Pale Moon provides a familiar set of controls and visual feedback similar
    1.42 +to previous versions of Firefox, including grouped navigation buttons,
    1.43 +a bookmarks toolbar that is enabled by default, tabs next to page content
    1.44 +by default, and a functional status bar.
    1.45 +
    1.46 +This is a third party build; the original project is at www.palemoon.org.
    1.47 +For support, check out the wiki at http://pm4linux.sf.net/wiki and the forum
    1.48 +at http://forum.palemoon.org.
    1.49 +
    1.50 +
    1.51 +Features
    1.52 +========
    1.53 +  * Optimized for modern processors (SSE2)
    1.54 +  * Based on the source code of Firefox
    1.55 +  * Unnecessary bloat (social API, accessibility features, WebRTC) removed
    1.56 +  * Support for Firefox extensions (add-ons) and themes
    1.57 +  * More customization and configuration options than Firefox
    1.58 +EOD