wok view seamonkey-official/receipt @ rev 22991

updated l3afpad (0.8.18.1.10 -> 0.8.18.1.11)
author Hans-G?nter Theisgen
date Sun Mar 01 17:39:44 2020 +0100 (2020-03-01)
parents 58316b572647
children 1bab6695e007
line source
1 # SliTaz package receipt.
3 PACKAGE="seamonkey-official"
4 VERSION="2.49.5"
5 CATEGORY="network"
6 TAGS="web-browser"
7 SHORT_DESC="Official Seamonkey build by the seamonkey-project (English language)."
8 MAINTAINER="mojo@slitaz.org"
9 LICENSE="MPL2"
10 WEB_SITE="https://www.seamonkey-project.org"
12 TARBALL="seamonkey-$VERSION.tar.bz2"
13 WGET_URL="https://archive.mozilla.org/pub/seamonkey/releases/$VERSION/linux-i686/en-GB/$TARBALL"
15 DEPENDS="alsa-lib curl glib gtk+ jpeg libevent libIDL libnotify \
16 libvpx xorg-libX11 xorg-libXt"
18 HOST_ARCH="i486"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 # Installation path
24 fx='/opt/seamonkey'
26 mkdir -p \
27 $install$fx \
28 $install/usr/bin \
29 $install/usr/share/applications \
30 $install/usr/share/pixmaps
32 # Copy everything
33 cp -a $src/* $install$fx
35 # Executable
36 ln -s $fx/seamonkey $install/usr/bin/seamonkey-official
38 # Allow user updates (save user's and our traffic)
39 chmod -R a+w $install$fx
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 cp -a $install/* $fs
46 }