wok view mirage/receipt @ rev 25460

Update sourceforge.net web_sites with https://
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 28 08:10:35 2022 +0000 (19 months ago)
parents 370da83187ab
children
line source
1 # SliTaz package receipt.
3 PACKAGE="mirage"
4 VERSION="0.9.5.2"
5 CATEGORY="graphics"
6 SHORT_DESC="A fast and simple image viewer."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://mirageiv.sourceforge.net/"
11 WGET_URL="http://download.berlios.de/mirageiv/$TARBALL"
13 DEPENDS="python pygtk xorg-libX11 xorg-libXau xorg-libXdmcp libffi"
14 BUILD_DEPENDS="python python-dev xorg-xproto xorg-libX11-dev gettext"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://sourceforge.net/projects/mirageiv/files/ 2>/dev/null | \
20 sed '/scope="row/!d;s|.*/mirage-||;s|.tar.*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 python setup.py install --root=$DESTDIR
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/usr $fs
33 }