wok annotate ranger/receipt @ rev 17501

Normalize tags "file-manager", "web-browser", "text-editor", "terminal", and "window-manager" according to tazx.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 08 02:04:05 2015 +0200 (2015-01-08)
parents 70122e7eef9a
children 7390f8de9846
rev   line source
pascal@11564 1 # SliTaz package receipt.
pascal@11564 2
pascal@11564 3 PACKAGE="ranger"
paul@16113 4 VERSION="1.6.1"
pascal@11564 5 CATEGORY="utilities"
pascal@11564 6 SHORT_DESC="File manager."
pascal@11564 7 MAINTAINER="paul@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@11564 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11564 10 WEB_SITE="http://nongnu.org/ranger/"
pascal@11564 11 WGET_URL="http://nongnu.org/ranger/$PACKAGE-stable.tar.gz"
al@17501 12 TAGS="file-manager"
pascal@11564 13
pascal@14999 14 DEPENDS="python"
pascal@14999 15 BUILD_DEPENDS="python python-dev"
pascal@14999 16
pascal@11564 17 # Rules to configure and make the package.
pascal@11564 18 compile_rules()
pascal@11564 19 {
pascal@11564 20 cd $src
pascal@11564 21 python setup.py build
paul@13432 22 python setup.py install --root=$DESTDIR
pascal@11564 23 }
pascal@11564 24
pascal@11564 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11564 26 genpkg_rules()
pascal@11564 27 {
paul@13432 28 cp -a $install/usr $fs
paul@16113 29 # remove stuff
paul@16113 30 rm -rf $fs/usr/share/man
pascal@11564 31 }
pascal@11564 32