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