wok view znotes/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 5ea0ce1cecc0
children cec9f8f5726d
line source
1 # SliTaz package receipt.
3 PACKAGE="znotes"
4 VERSION="0.4.5"
5 CATEGORY="office"
6 SHORT_DESC="zNotes is lightweigh crossplatform application for notes management"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 #WEB_SITE="http://qt-apps.org/content/show.php/zNotes?content=113117"
10 #WEB_SITE="https://znotes.sourceforge.net/"
11 WEB_SITE="https://github.com/proton/zNotes"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/proton/zNotes/archive/$VERSION.tar.gz"
15 DEPENDS="libQtGui libQtXml"
16 BUILD_DEPENDS="Qt4-dev qmake wget"
18 current_version()
19 {
20 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
21 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 lrelease znotes.pro
28 qmake
29 make
30 make INSTALL_ROOT=$install install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs
37 }