wok view seamonkey-official/receipt @ rev 20701

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