wok-next diff lsdvd/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 8e1b2a143eb3
children
line diff
     1.1 --- a/lsdvd/receipt	Sat Sep 01 16:21:51 2018 +0300
     1.2 +++ b/lsdvd/receipt	Sat Nov 21 14:32:44 2020 +0100
     1.3 @@ -3,27 +3,23 @@
     1.4  PACKAGE="lsdvd"
     1.5  VERSION="0.16"
     1.6  CATEGORY="system-tools"
     1.7 -SHORT_DESC="A console application that displays the content of a DVD."
     1.8 -MAINTAINER="erjo@slitaz.org"
     1.9 +SHORT_DESC="A console application that displays the content of a DVD"
    1.10 +MAINTAINER="devel@slitaz.org"
    1.11  LICENSE="GPL2"
    1.12 +WEB_SITE="https://sourceforge.net/projects/lsdvd/"
    1.13 +
    1.14  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="https://sourceforge.net/projects/lsdvd/"
    1.16  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.17  
    1.18 -DEPENDS="libdvdread"
    1.19  BUILD_DEPENDS="libdvdread-dev automake"
    1.20  
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 +compile_rules() {
    1.25  	./configure $CONFIGURE_ARGS &&
    1.26 -	make &&	make install
    1.27 +	make &&
    1.28 +	make install
    1.29  }
    1.30  
    1.31 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 -genpkg_rules()
    1.33 -{
    1.34 -	mkdir -p $fs/usr
    1.35 -	cp -a $install/usr/bin $fs/usr
    1.36 +genpkg_rules() {
    1.37 +	copy @std
    1.38 +	DEPENDS="libdvdread"
    1.39  }
    1.40 -