get-scripts annotate palemoon @ rev 17

Add palemoon
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 31 09:35:01 2014 +0000 (2014-05-31)
parents
children 587ada03bde0
rev   line source
pascal@17 1 VERSION="24.5.0"
pascal@17 2 SHORT_DESC="Browser based on Firefox that's optimised for performance."
pascal@17 3 MAINTAINER="al.bobylev@gmail.com"
pascal@17 4 CATEGORY="network"
pascal@17 5 LICENSE="MPL2"
pascal@17 6 WEB_SITE="http://www.palemoon.org/"
pascal@17 7 TARBALL=$PACKAGE-$VERSION.en-US.linux-i686.tar.bz2
pascal@17 8 WGET_URL=http://sourceforge.net/projects/pm4linux/files/$VERSION/$TARBALL
pascal@17 9 TAGS="browser"
pascal@17 10 DEPENDS="dbus-glib"
pascal@17 11
pascal@17 12 mkdir -p $PACKAGE-$VERSION/fs/opt
pascal@17 13 busybox wget -O - $WGET_URL | tar -xjf - -C $PACKAGE-$VERSION/fs/opt
pascal@17 14 [ -d $PACKAGE-$VERSION/fs/opt/palemoon ] ||
pascal@17 15 abort_package "Could not download $TARBALL from $URL. Exiting."
pascal@17 16
pascal@17 17 DESKTOP=$PACKAGE-$VERSION/fs/usr/share/applications/palemoon.desktop
pascal@17 18 mkdir -p $(dirname $DESKTOP)
pascal@17 19 cat > $DESKTOP << EOA
pascal@17 20 [Desktop Entry]
pascal@17 21 Type=Application
pascal@17 22 Name=Palemoon
pascal@17 23 Exec=/opt/palemoon/palemoon %u
pascal@17 24 Icon=/opt/palemoon/browser/icons/mozicon128.png
pascal@17 25 StartupNotify=true
pascal@17 26 Categories=GTK;Network;WebBrowser;
pascal@17 27 MimeType=text/html;text/xml;application/xhtml+xml;application/xml;
pascal@17 28 EOA
pascal@17 29
pascal@17 30 cat > $PACKAGE-$VERSION/description.txt << EOD
pascal@17 31 Description
pascal@17 32 ===========
pascal@17 33
pascal@17 34 Pale Moon is an open source, web browser based on Firefox focusing on efficiency
pascal@17 35 by leaving out unnecessary features and making optimizations, while maintaining
pascal@17 36 compatibility with Firefox extensions and themes.
pascal@17 37
pascal@17 38 Pale Moon provides a familiar set of controls and visual feedback similar
pascal@17 39 to previous versions of Firefox, including grouped navigation buttons,
pascal@17 40 a bookmarks toolbar that is enabled by default, tabs next to page content
pascal@17 41 by default, and a functional status bar.
pascal@17 42
pascal@17 43 This is a third party build; the original project is at www.palemoon.org.
pascal@17 44 For support, check out the wiki at http://pm4linux.sf.net/wiki and the forum
pascal@17 45 at http://forum.palemoon.org.
pascal@17 46
pascal@17 47
pascal@17 48 Features
pascal@17 49 ========
pascal@17 50 * Optimized for modern processors (SSE2)
pascal@17 51 * Based on the source code of Firefox
pascal@17 52 * Unnecessary bloat (social API, accessibility features, WebRTC) removed
pascal@17 53 * Support for Firefox extensions (add-ons) and themes
pascal@17 54 * More customization and configuration options than Firefox
pascal@17 55 EOD