qmmp-plugin-pack: bump version

This commit is contained in:
Gerasim Troeglazov
2019-02-13 22:28:34 +10:00
parent c6a76c0da5
commit c825798c24

View File

@@ -1,18 +1,16 @@
SUMMARY="Plugin pack is a set of extra plugins for Qmmp" SUMMARY="Plugin pack is a set of extra plugins for Qmmp"
DESCRIPTION="Plugin List: DESCRIPTION="Plugin List:
* MPG123 - MPEG v1/2 layer1/2/3 decoder using of libmpg123 library
* FFap - enhanced Monkey's Audio (APE) decoder (24-bit samples and embedded cue support) * FFap - enhanced Monkey's Audio (APE) decoder (24-bit samples and embedded cue support)
* XMP - module player with use of the libxmp library * XMP - module player with use of the libxmp library
* Sample Rate Converter - resampler based on libsamplerate library * Sample Rate Converter - resampler based on libsamplerate library
* Goom - audio visualization based on goom project * Goom - audio visualization based on goom project
* FFVideo - video playback engine based on FFmpeg library * FFVideo - video playback engine based on FFmpeg library"
* History - a tool for collection information information about listened tracks"
HOMEPAGE="http://qmmp.ylsoftware.com/" HOMEPAGE="http://qmmp.ylsoftware.com/"
COPYRIGHT="2006-2018 Qmmp Development Team" COPYRIGHT="2006-2019 Qmmp Development Team"
LICENSE="GNU GPL v2" LICENSE="GNU GPL v2"
REVISION="1" REVISION="1"
SOURCE_URI="https://sourceforge.net/projects/qmmp-dev/files/qmmp-plugin-pack/qmmp-plugin-pack-$portVersion.tar.bz2" SOURCE_URI="https://sourceforge.net/projects/qmmp-dev/files/qmmp-plugin-pack/qmmp-plugin-pack-$portVersion.tar.bz2"
CHECKSUM_SHA256="aec1af63feda672a59427bc399792a59682d4d1b9d1af280702ae36a0e09665e" CHECKSUM_SHA256="4abb4cff9c3ef5abcc8e80279963f2423cb62e5d46f5c4751acd81f1ef42c82a"
SOURCE_DIR="qmmp-plugin-pack-$portVersion" SOURCE_DIR="qmmp-plugin-pack-$portVersion"
ARCHITECTURES="!x86_gcc2 x86 x86_64" ARCHITECTURES="!x86_gcc2 x86 x86_64"
@@ -26,7 +24,6 @@ REQUIRES="
lib:libavcodec$secondaryArchSuffix lib:libavcodec$secondaryArchSuffix
lib:libavformat$secondaryArchSuffix lib:libavformat$secondaryArchSuffix
lib:libavutil$secondaryArchSuffix lib:libavutil$secondaryArchSuffix
lib:libmpg123$secondaryArchSuffix
lib:libqmmp$secondaryArchSuffix lib:libqmmp$secondaryArchSuffix
lib:libqmmpui$secondaryArchSuffix lib:libqmmpui$secondaryArchSuffix
lib:libQt5Core$secondaryArchSuffix lib:libQt5Core$secondaryArchSuffix
@@ -34,25 +31,27 @@ REQUIRES="
lib:libQt5Widgets$secondaryArchSuffix lib:libQt5Widgets$secondaryArchSuffix
lib:libsamplerate$secondaryArchSuffix lib:libsamplerate$secondaryArchSuffix
lib:libtag$secondaryArchSuffix lib:libtag$secondaryArchSuffix
lib:libxmp$secondaryArchSuffix
" "
BUILD_REQUIRES=" BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel haiku${secondaryArchSuffix}_devel
devel:libavcodec$secondaryArchSuffix devel:libavcodec$secondaryArchSuffix
devel:libavformat$secondaryArchSuffix devel:libavformat$secondaryArchSuffix
devel:libmpg123$secondaryArchSuffix
devel:libqmmp$secondaryArchSuffix devel:libqmmp$secondaryArchSuffix
devel:libQt5Core$secondaryArchSuffix >= 5.7 devel:libQt5Core$secondaryArchSuffix >= 5.12
devel:libsamplerate$secondaryArchSuffix devel:libsamplerate$secondaryArchSuffix
devel:libtag$secondaryArchSuffix devel:libtag$secondaryArchSuffix
devel:libxmp$secondaryArchSuffix
" "
BUILD_PREREQUIRES=" BUILD_PREREQUIRES="
cmd:cmake
cmd:find cmd:find
cmd:flex cmd:flex
cmd:gcc$secondaryArchSuffix cmd:gcc$secondaryArchSuffix
cmd:lrelease$secondaryArchSuffix >= 5.12
cmd:make cmd:make
cmd:pkg_config$secondaryArchSuffix cmd:pkg_config$secondaryArchSuffix
cmd:qmake$secondaryArchSuffix >= 5.7
cmd:xargs cmd:xargs
cmd:yacc cmd:yacc
cmd:yasm cmd:yasm
@@ -60,15 +59,21 @@ BUILD_PREREQUIRES="
BUILD() BUILD()
{ {
qmake \ mkdir -p build
DISABLED_PLUGINS+=XMP_PLUGIN \ cd build
DISABLED_PLUGINS+=GOOM_ASM \
DISABLED_PLUGINS+=FFVIDEO_PLUGIN cmake .. $cmakeDirArgs \
-DCMAKE_INSTALL_PREFIX=$appsDir/Qmmp \
-DCMAKE_INSTALL_BINDIR=$appsDir/Qmmp \
-DPLUGIN_DIR=$appsDir/Qmmp/plugins \
-DCMAKE_BUILD_TYPE=RELEASE \
-DUSE_FFVIDEO=OFF
make $jobArgs make $jobArgs
} }
INSTALL() INSTALL()
{ {
mkdir -p $appsDir/Qmmp/plugins cd build
cp -rf lib/qmmp/* $appsDir/Qmmp/plugins make install
} }