wok view neonview/receipt @ rev 24482

updated diffutils (3.7 -> 3.8)
author Hans-G?nter Theisgen
date Fri Feb 18 14:45:09 2022 +0100 (2022-02-18)
parents b8d097791146
children 1f9238437d3b
line source
1 # SliTaz package receipt.
3 PACKAGE="neonview"
4 VERSION="0.8.2"
5 CATEGORY="graphics"
6 SHORT_DESC="Free, lightweight image viewer."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.tuxarena.com/neonview/"
11 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
12 WGET_URL="http://www.tuxarena.com/intro/files/$TARBALL"
14 DEPENDS="gtk+3"
15 BUILD_DEPENDS="gtk+3-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - http://www.tuxarena.com/neonview/download/ 2>/dev/null | \
21 sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-||;s|.[a-z].*||" | sort -Vr | sed q
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 make
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 install -Dm755 $src/neonview $fs/usr/bin/neonview
34 }