wok view seamonkey-official/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents 8a28cf0b51ed
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="seamonkey-official"
4 VERSION="2.53.1"
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.en-GB.linux-i686.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 }