wok-next view gritz/receipt @ rev 20975

Close the chain: python and python3 both have upgradeable setuptools and pip
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Sep 23 04:37:56 2018 +0300 (2018-09-23)
parents 7f212d212273
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="gritz"
4 VERSION="1.0"
5 CATEGORY="misc"
6 SHORT_DESC="A txt reader, which makes you reading twice as fast as usual."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/xypiie/gritz"
11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
13 DEPENDS="perl-gtk2"
14 BUILD_DEPENDS="perl"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 libperl=$(tazpkg list-files perl | \
20 sed '/^\/usr\/lib\/perl/!d;s|\(/usr/lib/perl[^/]*/[^/]*\).*|\1|;q')
21 mkdir -p $fs/usr/bin $fs$libperl
22 cp -a $src/lib/*.pm $fs$libperl
23 cp -a $src/gritz.pl $fs/usr/bin/gritz
24 }