wok view iron-linux/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 59bc2c6956c3
children
line source
1 # SliTaz package receipt.
3 PACKAGE="iron-linux"
4 VERSION="48.2550.0"
5 CATEGORY="network"
6 SHORT_DESC="A secure web browser based on Chromium."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://www.srware.net/en/software_srware_iron.php"
11 WGET_URL="https://www.srware.net/downloads/$PACKAGE.tar.gz"
12 TAGS="chromium web-browser"
14 DEPENDS="bash nss libfirefox GConf libcups libjpeg62 libpng libffi x264" # may need updating?
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - 'https://www.srware.net/forum/search.php?keywords=iron-linux' 2>/dev/null | \
20 sed '/Stable for Linux/!d;s|.*Version: ||;s| Stable.*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 mkdir -p $DESTDIR
27 cp -a $src $DESTDIR/$PACKAGE
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib $fs/usr/share/pixmaps $fs/usr/bin
34 cp -a $install/$PACKAGE $fs/usr/lib
35 cp -a $fs/usr/lib/$PACKAGE/product_logo_48.png \
36 $fs/usr/share/pixmaps/iron.png
37 ln -s /usr/lib/iron-linux/chrome $fs/usr/bin/iron
38 }