# HG changeset patch # User Christopher Rogers # Date 1335000516 0 # Node ID 6ad7fec1c8d06b23bba299c30942c0b9cbddf05f # Parent 9b467e60ded0307eb5729bcca9eb2bc073a34e83 Up: libquicktime to 1.2.4. diff -r 9b467e60ded0 -r 6ad7fec1c8d0 libquicktime-dev/receipt --- a/libquicktime-dev/receipt Sat Apr 21 09:27:08 2012 +0000 +++ b/libquicktime-dev/receipt Sat Apr 21 09:28:36 2012 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libquicktime-dev" -VERSION="1.1.5" +VERSION="1.2.4" CATEGORY="development" MAINTAINER="jozee@slitaz.org" SHORT_DESC="libquicktime devel files" @@ -13,8 +13,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib $fs/usr/share - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr - cp -a $_pkg/usr/share/aclocal $fs/usr/share + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r 9b467e60ded0 -r 6ad7fec1c8d0 libquicktime/receipt --- a/libquicktime/receipt Sat Apr 21 09:27:08 2012 +0000 +++ b/libquicktime/receipt Sat Apr 21 09:28:36 2012 +0000 @@ -1,36 +1,36 @@ # SliTaz package receipt. PACKAGE="libquicktime" -VERSION="1.1.5" +VERSION="1.2.4" CATEGORY="multimedia" MAINTAINER="jozee@slitaz.org" SHORT_DESC="A library for reading and writing quicktime files." WEB_SITE="http://libquicktime.sourceforge.net/" -DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264" -BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264" +BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev" + # Rules to configure and make the package. - -compile_rules() { +compile_rules() +{ cd $src - patch -Np1 -i $stuff/gtk22.patch ./configure --prefix=/usr \ - --enable-gpl \ - --with-ffmpeg \ - --with-x264 \ - --without-doxygen \ - $CONFIGURE_ARGS && + --enable-gpl \ + --with-ffmpeg \ + --with-x264 \ + --without-doxygen \ + $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/$PACKAGE - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ - cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*so* $fs/usr/lib/ + cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE }