wok-next diff which/receipt @ rev 19693

Add: gcr, oniguruma; remove: nano-doc; up: apr, fribidi, jasper, libgphoto2, libmtp, libunique, libwebp, nano, pcre, apr, apr-util, aspell*, glib-networking, gnutls, gsettings-desktop-schemas, gtk+, gtk+3, gvfs*, libexif, libfm, libgnutls, libmng, libraw, libsoup, libtasn1, libusb, libwebp, lxmenu-data, menu-cache, mysql, newt, p11-kit, pcre, popt, postgresql, slang, which
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 21 14:48:05 2017 +0300 (2017-04-21)
parents 6fab3264ba87
children f463de72afe3
line diff
     1.1 --- a/which/receipt	Fri Dec 25 15:23:46 2015 +0200
     1.2 +++ b/which/receipt	Fri Apr 21 14:48:05 2017 +0300
     1.3 @@ -1,36 +1,26 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="which"
     1.7 -VERSION="2.20"
     1.8 +VERSION="2.21"
     1.9  CATEGORY="base-system"
    1.10  SHORT_DESC="A utility to show the full path of commands"
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12  LICENSE="GPL3"
    1.13 +WEB_SITE="https://savannah.gnu.org/projects/which/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://www.xs4all.nl/~carlo17/which"
    1.17 -WGET_URL="http://www.xs4all.nl/~carlo17/$PACKAGE/$TARBALL"
    1.18 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.19  
    1.20  DEPENDS="glibc-base"
    1.21  
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	./configure \
    1.26 -		--prefix=/usr \
    1.27 -		--infodir=/usr/share/info \
    1.28 -		--mandir=/usr/share/man \
    1.29 -		$CONFIGURE_ARGS &&
    1.30 -	make && make DESTDIR=$DESTDIR install
    1.31 +	./configure $CONFIGURE_ARGS && make && make install
    1.32  }
    1.33  
    1.34  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.35  genpkg_rules()
    1.36  {
    1.37 -	mkdir -p $fs/usr
    1.38 -	cp -a $install/usr/bin $fs/usr
    1.39 +	cook_copy_folders bin
    1.40  }
    1.41 -
    1.42 -post_remove()
    1.43 -{
    1.44 -	ln -s /bin/busybox /usr/bin/which
    1.45 -}