wok-6.x rev 8837
Fixed taglib for new mixxx. Up: mixxx to 1.9.0.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Feb 24 11:45:20 2011 +0000 (2011-02-24) |
parents | 70f8a44dd642 |
children | 5d8d9b8866f6 |
files | mixxx/receipt taglib/receipt |
line diff
1.1 --- a/mixxx/receipt Thu Feb 24 11:20:08 2011 +0000 1.2 +++ b/mixxx/receipt Thu Feb 24 11:45:20 2011 +0000 1.3 @@ -1,12 +1,12 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="mixxx" 1.7 -VERSION="1.8.2" 1.8 +VERSION="1.9.0" 1.9 CATEGORY="multimedia" 1.10 SHORT_DESC="Digital DJ mixing software" 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 -DEPENDS="libsndfile libogg libid3tag libmad libvorbis portaudio portmidi libQtOpenGL libQtWebkit libQt3Support libQtScript libQtSvg libQtDBus qt4-phonon" 1.13 -BUILD_DEPENDS="libsndfile-dev libogg-dev libid3tag-dev libmad-dev libvorbis-dev portaudio-dev qt4-phonon Qt4-dev alsa-lib-dev jack-audio-connection-kit-dev mesa-dev scons pkg-config" 1.14 +DEPENDS="libsndfile libogg libid3tag libmad libvorbis taglib libshout portaudio portmidi libQtOpenGL libQtWebkit libQt3Support libQtScript libQtSvg libQtDBus qt4-phonon" 1.15 +BUILD_DEPENDS="libsndfile-dev libogg-dev libid3tag-dev libmad-dev libvorbis-dev taglib-dev libshout-dev portaudio-dev qt4-phonon Qt4-dev alsa-lib-dev jack-audio-connection-kit-dev mesa-dev scons pkg-config" 1.16 TARBALL="$PACKAGE-$VERSION-src.tar.gz" 1.17 WEB_SITE="http://www.mixxx.org/" 1.18 WGET_URL="http://downloads.mixxx.org/$PACKAGE-$VERSION/$TARBALL"
2.1 --- a/taglib/receipt Thu Feb 24 11:20:08 2011 +0000 2.2 +++ b/taglib/receipt Thu Feb 24 11:45:20 2011 +0000 2.3 @@ -9,18 +9,22 @@ 2.4 WEB_SITE="http://developer.kde.org/~wheeler/taglib.html" 2.5 WGET_URL="http://developer.kde.org/~wheeler/files/src/$TARBALL" 2.6 DEPENDS="zlib gcc-lib-base" 2.7 -BUILD_DEPENDS="zlib-dev" 2.8 +BUILD_DEPENDS="zlib-dev cmake" 2.9 TAGS="multimedia music tag" 2.10 2.11 # Rules to configure and make the package. 2.12 compile_rules() 2.13 { 2.14 cd $src 2.15 - ./configure \ 2.16 - --prefix=/usr \ 2.17 - $CONFIGURE_ARGS && 2.18 - make && 2.19 - make DESTDIR=$PWD/_pkg install 2.20 + mkdir build 2.21 + cd build 2.22 + cmake ../ \ 2.23 + -DCMAKE_INSTALL_PREFIX=/usr \ 2.24 + -DCMAKE_BUILD_TYPE=Release \ 2.25 + -DWITH_MP4=ON \ 2.26 + -DWITH_ASF=ON 2.27 + make VERBOSE=1 2.28 + make install 2.29 } 2.30 2.31 # Rules to gen a SliTaz package suitable for Tazpkg.