wok-next diff vcdimager/receipt @ rev 20567

xfe: update receipt; qt5: undo `fix math`
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Apr 11 01:07:35 2018 +0300 (2018-04-11)
parents d43bf7aae921
children 10df65db91ad
line diff
     1.1 --- a/vcdimager/receipt	Wed Mar 21 15:58:17 2018 +0200
     1.2 +++ b/vcdimager/receipt	Wed Apr 11 01:07:35 2018 +0300
     1.3 @@ -11,40 +11,29 @@
     1.4  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
     1.5  
     1.6  BUILD_DEPENDS="libcdio libcdio-dev libxml2-dev popt-dev gfortran"
     1.7 -SPLIT="vcdimager vcdimager-dev vcdimager-xmltools"
     1.8 +SPLIT="vcdimager-xmltools vcdimager vcdimager-dev"
     1.9  
    1.10 -# Rules to configure and make the package.
    1.11 -compile_rules()
    1.12 -{
    1.13 +compile_rules() {
    1.14  	./configure $CONFIGURE_ARGS &&
    1.15 -	make && make install
    1.16 +	make &&
    1.17 +	make install
    1.18  }
    1.19  
    1.20 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.21 -genpkg_rules()
    1.22 -{
    1.23 +genpkg_rules() {
    1.24  	case $PACKAGE in
    1.25 -	vcdimager)
    1.26 -		TAGS="multimedia video vcd"
    1.27 -		DEPENDS="libcdio libxml2 popt"
    1.28 -		mkdir -p $fs/usr/bin
    1.29 -		cp -a $install/usr/bin/vcdimager $fs/usr/bin
    1.30 -		;;
    1.31 -	vcdimager-dev)
    1.32 -		CAT="development|vcdimager devel files"
    1.33 -		mkdir -p $fs/usr/lib
    1.34 -		cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.35 -		cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.36 -		cp -a $install/usr/include $fs/usr
    1.37 -		;;
    1.38 -	vcdimager-xmltools)
    1.39 -		CAT="multimedia|vcd xml and diagnostic tools from vcdimager"
    1.40 -		TAGS="vcd"
    1.41 -		DEPENDS="vcdimager"
    1.42 -		mkdir -p $fs/usr/bin $fs/usr/lib 
    1.43 -		cp -a $install/usr/bin/ $fs/usr
    1.44 -		cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.45 -		rm $fs/usr/bin/vcdimager	
    1.46 -		;;
    1.47 +		vcdimager)
    1.48 +			copy vcdimager
    1.49 +			DEPENDS="libcdio libxml2 popt"
    1.50 +			TAGS="multimedia video vcd"
    1.51 +			;;
    1.52 +		vcdimager-xmltools)
    1.53 +			copy @std @rm
    1.54 +			DEPENDS="vcdimager"
    1.55 +			CAT="multimedia|vcd xml and diagnostic tools"
    1.56 +			TAGS="vcd"
    1.57 +			;;
    1.58 +		*-dev)
    1.59 +			copy @dev
    1.60 +			;;
    1.61  	esac
    1.62  }