wok rev 25356

updated tig (2.5.1 -> 2.5.6)
author Hans-G?nter Theisgen
date Wed Jul 27 06:32:16 2022 +0100 (21 months ago)
parents 42621d26bf58
children b5bcdb59cf13
files tig/description.txt tig/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tig/description.txt	Wed Jul 27 06:32:16 2022 +0100
     1.3 @@ -0,0 +1,5 @@
     1.4 +Tig is an ncurses-based text-mode interface for git.
     1.5 +It functions mainly as a Git repository browser, but
     1.6 +can also assist in staging changes for commit at
     1.7 +chunk level and act as a pager for output from
     1.8 +various Git commands.
     2.1 --- a/tig/receipt	Wed Jul 27 06:22:08 2022 +0100
     2.2 +++ b/tig/receipt	Wed Jul 27 06:32:16 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="tig"
     2.7 -VERSION="2.5.1"
     2.8 +VERSION="2.5.6"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="Text-mode interface for git."
    2.11  MAINTAINER="paul@slitaz.org"
    2.12 @@ -12,7 +12,7 @@
    2.13  WGET_URL="https://github.com/jonas/$PACKAGE/archive/$TARBALL"
    2.14  
    2.15  DEPENDS="ncurses"
    2.16 -BUILD_DEPENDS="libtool ncurses-dev"
    2.17 +BUILD_DEPENDS="automake ncurses-dev"
    2.18  
    2.19  current_version()
    2.20  {
    2.21 @@ -28,15 +28,12 @@
    2.22  		--prefix=/usr		\
    2.23  		--sysconfdir=/etc &&
    2.24  	make &&
    2.25 -	make DESTDIR=$DESTDIR install
    2.26 +	make install DESTDIR=$DESTDIR
    2.27  }
    2.28  
    2.29  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.30  genpkg_rules()
    2.31  {
    2.32 -	mkdir -p $fs/usr
    2.33 -	mkdir -p $fs/etc
    2.34 -
    2.35 -	cp -a $install/usr/bin		$fs/usr
    2.36 -	cp -a $install/etc/tigrc	$fs/etc
    2.37 +	cook_copy_folders	bin
    2.38 +	cook_copy_files		tigrc
    2.39  }