wok view rsstail/receipt @ rev 24995

updated nginx and nginx-extras (1.19.0 -> 1.21.6)
author Hans-G?nter Theisgen
date Mon May 16 10:04:06 2022 +0100 (2022-05-16)
parents 84c5b3483e46
children 505d1daeed6c
line source
1 # SliTaz package receipt.
3 PACKAGE="rsstail"
4 VERSION="2.1"
5 CATEGORY="network"
6 SHORT_DESC="RSS feed reader."
7 MAINTAINER="tcg.thegamer@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="https://github.com/oldlaptop/rsstail"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="${WEB_SITE}${TARBALL}"
14 DEPENDS="curl libmrss libnxml"
15 BUILD_DEPENDS="curl-dev libcurl libnxml-dev libmrss-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://raw.githubusercontent.com/oldlaptop/rsstail/master/Makefile 2>/dev/null | \
21 sed '/VERSION/!d;s|.*=||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 sed -i 's/-liconv_hook //' Makefile
28 make prefix=$install/usr &&
29 make install prefix=$install/usr
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr/
37 }