wok view terminator/receipt @ rev 25004

updated ntfs-3g and ntfs-3g-dev (2017.3.23 -> 2021.8.22)
author Hans-G?nter Theisgen
date Mon May 16 16:20:40 2022 +0100 (2022-05-16)
parents 1722e3893bac
children 0262035dc1e7
line source
1 # SliTaz package receipt.
3 PACKAGE="terminator"
4 VERSION="1.92"
5 CATEGORY="x-window"
6 SHORT_DESC="Tool for arranging terminals."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://gnometerminator.blogspot.com/p/introduction.html"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/gnome-terminator/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS="notify-python pygtk python python-vte"
15 BUILD_DEPENDS="python-dev"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 python setup.py install --root=$DESTDIR 2>&1 | grep -v "GTK icon cache"
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 }