wok-current diff zvbi/receipt @ rev 23926
Add minesweeper & pacman
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Aug 23 15:10:17 2020 +0000 (2020-08-23) |
parents | b0c60d808e5c |
children | c365fe17a816 |
line diff
1.1 --- a/zvbi/receipt Mon Sep 16 12:32:27 2013 +0000 1.2 +++ b/zvbi/receipt Sun Aug 23 15:10:17 2020 +0000 1.3 @@ -1,13 +1,14 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="zvbi" 1.7 -VERSION="0.2.33" 1.8 +VERSION="0.2.35" 1.9 CATEGORY="multimedia" 1.10 SHORT_DESC="VBI capture and decoding library." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 LICENSE="GPL2" 1.13 +WEB_SITE="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 -WEB_SITE="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome" 1.17 WGET_URL="$SF_MIRROR/zapping/$TARBALL" 1.18 1.19 DEPENDS="libpng xorg-libX11" 1.20 @@ -16,23 +17,24 @@ 1.21 # Rules to configure and make the package. 1.22 compile_rules() 1.23 { 1.24 - cd $src 1.25 patch -Np1 -i $stuff/fix-includes.patch 1.26 - ./configure \ 1.27 - --prefix=/usr \ 1.28 - --infodir=/usr/share/info \ 1.29 - --mandir=/usr/share/man \ 1.30 - --disable-static \ 1.31 + 1.32 + ./configure \ 1.33 + --prefix=/usr \ 1.34 + --infodir=/usr/share/info \ 1.35 + --mandir=/usr/share/man \ 1.36 + --disable-static \ 1.37 $CONFIGURE_ARGS && 1.38 - make && make DESTDIR=$DESTDIR install 1.39 + make && 1.40 + make DESTDIR=$DESTDIR install 1.41 } 1.42 1.43 # Rules to gen a SliTaz package suitable for Tazpkg. 1.44 genpkg_rules() 1.45 { 1.46 mkdir -p $fs/usr/lib 1.47 - cp -a $install/usr/bin $fs/usr 1.48 - cp -a $install/usr/sbin $fs/usr 1.49 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.50 + 1.51 + cp -a $install/usr/bin $fs/usr 1.52 + cp -a $install/usr/sbin $fs/usr 1.53 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.54 } 1.55 -