wok view cherrytree/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 5ea0ce1cecc0
children 5db546345599
line source
1 # SliTaz package receipt.
3 PACKAGE="cherrytree"
4 VERSION="0.38.10"
5 CATEGORY="office"
6 SHORT_DESC="A hierarchical note taking application."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/giuspen/cherrytree"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://github.com/giuspen/$PACKAGE/archive/$VERSION.tar.gz"
14 DEPENDS="p7zip-full pygtk pygtksourceview python"
15 BUILD_DEPENDS="desktop-file-utils pygtksourceview-dev python"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 python setup.py install --prefix=$install/usr -f
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 cp -a $install/usr/share/applications $fs/usr/share
37 cp -a $install/usr/share/cherrytree $fs/usr/share
38 cp -a $install/usr/share/icons $fs/usr/share
39 }