wok rev 12423

Up: libquicktime to 1.2.4.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Apr 21 09:28:36 2012 +0000 (2012-04-21)
parents 9b467e60ded0
children bf47075087c1
files libquicktime-dev/receipt libquicktime/receipt
line diff
     1.1 --- a/libquicktime-dev/receipt	Sat Apr 21 09:27:08 2012 +0000
     1.2 +++ b/libquicktime-dev/receipt	Sat Apr 21 09:28:36 2012 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libquicktime-dev"
     1.7 -VERSION="1.1.5"
     1.8 +VERSION="1.2.4"
     1.9  CATEGORY="development"
    1.10  MAINTAINER="jozee@slitaz.org"
    1.11  SHORT_DESC="libquicktime devel files"
    1.12 @@ -13,8 +13,7 @@
    1.13  genpkg_rules()
    1.14  {
    1.15  	mkdir -p $fs/usr/lib $fs/usr/share
    1.16 -	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    1.17 -	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    1.18 -	cp -a $_pkg/usr/include $fs/usr
    1.19 -	cp -a $_pkg/usr/share/aclocal $fs/usr/share
    1.20 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.21 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.22 +	cp -a $install/usr/include $fs/usr
    1.23  }
     2.1 --- a/libquicktime/receipt	Sat Apr 21 09:27:08 2012 +0000
     2.2 +++ b/libquicktime/receipt	Sat Apr 21 09:28:36 2012 +0000
     2.3 @@ -1,36 +1,36 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libquicktime"
     2.7 -VERSION="1.1.5"
     2.8 +VERSION="1.2.4"
     2.9  CATEGORY="multimedia"
    2.10  MAINTAINER="jozee@slitaz.org"
    2.11  SHORT_DESC="A library for reading and writing quicktime files."
    2.12  WEB_SITE="http://libquicktime.sourceforge.net/"
    2.13 -DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264"
    2.14 -BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev"
    2.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.17  
    2.18 +DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264"
    2.19 +BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev"
    2.20 +
    2.21  # Rules to configure and make the package.
    2.22 -
    2.23 -compile_rules() {
    2.24 +compile_rules()
    2.25 +{
    2.26    cd $src
    2.27 -  patch -Np1 -i $stuff/gtk22.patch
    2.28    ./configure --prefix=/usr  \
    2.29 -			  --enable-gpl \
    2.30 -			  --with-ffmpeg \
    2.31 -			  --with-x264 \
    2.32 -			  --without-doxygen \
    2.33 -			  $CONFIGURE_ARGS &&
    2.34 +	--enable-gpl \
    2.35 +	--with-ffmpeg \
    2.36 +	--with-x264 \
    2.37 +	--without-doxygen \
    2.38 +	$CONFIGURE_ARGS &&
    2.39    make &&
    2.40 -  make DESTDIR=$PWD/_pkg install
    2.41 +  make DESTDIR=$DESTDIR install
    2.42  }
    2.43  	
    2.44  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.45  genpkg_rules()
    2.46  {
    2.47  	mkdir -p $fs/usr/lib/$PACKAGE
    2.48 -	cp -a $_pkg/usr/bin $fs/usr
    2.49 -	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
    2.50 -	cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
    2.51 +	cp -a $install/usr/bin $fs/usr
    2.52 +	cp -a $install/usr/lib/*so* $fs/usr/lib/
    2.53 +	cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
    2.54  }