wok rev 22336

updated zvbi and zvbi-dev (0.2.33 -> 0.2.35)
author Hans-G?nter Theisgen
date Fri Nov 15 16:30:46 2019 +0100 (2019-11-15)
parents baef3c7bb141
children 6a937d641b10
files zvbi-dev/receipt zvbi/receipt
line diff
     1.1 --- a/zvbi-dev/receipt	Fri Nov 15 16:17:53 2019 +0100
     1.2 +++ b/zvbi-dev/receipt	Fri Nov 15 16:30:46 2019 +0100
     1.3 @@ -1,21 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="zvbi-dev"
     1.7 -VERSION="0.2.33"
     1.8 +VERSION="0.2.35"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="devel files for zvbi"
    1.11 +SHORT_DESC="Development files for zvbi."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome"
    1.15 +
    1.16 +DEPENDS="pkg-config zvbi"
    1.17  WANTED="zvbi"
    1.18  
    1.19 -DEPENDS="zvbi pkg-config"
    1.20 -
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/include $fs/usr
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 +
    1.28 +	cp -a $install/usr/include		$fs/usr
    1.29 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.30  }
    1.31 -
     2.1 --- a/zvbi/receipt	Fri Nov 15 16:17:53 2019 +0100
     2.2 +++ b/zvbi/receipt	Fri Nov 15 16:30:46 2019 +0100
     2.3 @@ -1,13 +1,14 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="zvbi"
     2.7 -VERSION="0.2.33"
     2.8 +VERSION="0.2.35"
     2.9  CATEGORY="multimedia"
    2.10  SHORT_DESC="VBI capture and decoding library."
    2.11  MAINTAINER="slaxemulator@gmail.com"
    2.12  LICENSE="GPL2"
    2.13 +WEB_SITE="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.16 -WEB_SITE="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome"
    2.17  WGET_URL="$SF_MIRROR/zapping/$TARBALL"
    2.18  
    2.19  DEPENDS="libpng xorg-libX11"
    2.20 @@ -16,23 +17,24 @@
    2.21  # Rules to configure and make the package.
    2.22  compile_rules()
    2.23  {
    2.24 -	cd $src
    2.25  	patch -Np1 -i $stuff/fix-includes.patch
    2.26 -	./configure \
    2.27 -		--prefix=/usr \
    2.28 -		--infodir=/usr/share/info \
    2.29 -		--mandir=/usr/share/man \
    2.30 -		--disable-static \
    2.31 +
    2.32 +	./configure				\
    2.33 +		--prefix=/usr			\
    2.34 +		--infodir=/usr/share/info	\
    2.35 +		--mandir=/usr/share/man		\
    2.36 +		--disable-static		\
    2.37  		$CONFIGURE_ARGS &&
    2.38 -	make && make DESTDIR=$DESTDIR install
    2.39 +	make &&
    2.40 +	make DESTDIR=$DESTDIR install
    2.41  }
    2.42  
    2.43  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.44  genpkg_rules()
    2.45  {
    2.46  	mkdir -p $fs/usr/lib
    2.47 -	cp -a $install/usr/bin $fs/usr
    2.48 -	cp -a $install/usr/sbin $fs/usr
    2.49 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.50 +
    2.51 +	cp -a $install/usr/bin		$fs/usr
    2.52 +	cp -a $install/usr/sbin		$fs/usr
    2.53 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.54  }
    2.55 -