mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
community/clementine to 1.3.1-19
This commit is contained in:
parent
0bea06f0da
commit
d670633fbd
1 changed files with 13 additions and 16 deletions
|
@ -1,4 +1,3 @@
|
||||||
# $Id$
|
|
||||||
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
||||||
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
||||||
# Contributor: BlackEagle <ike.devolder@gmail.com>
|
# Contributor: BlackEagle <ike.devolder@gmail.com>
|
||||||
|
@ -9,7 +8,7 @@
|
||||||
|
|
||||||
pkgname=clementine
|
pkgname=clementine
|
||||||
pkgver=1.3.1
|
pkgver=1.3.1
|
||||||
pkgrel=18
|
pkgrel=19
|
||||||
pkgdesc='A modern music player and library organizer'
|
pkgdesc='A modern music player and library organizer'
|
||||||
url='http://www.clementine-player.org/'
|
url='http://www.clementine-player.org/'
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
|
@ -18,20 +17,20 @@ depends=('chromaprint' 'crypto++' 'fftw' 'gcc-libs' 'glew' 'glib2' 'glibc'
|
||||||
'gst-plugins-base-libs' 'gstreamer' 'libcdio' 'libechonest' 'libgl'
|
'gst-plugins-base-libs' 'gstreamer' 'libcdio' 'libechonest' 'libgl'
|
||||||
'libgpod' 'liblastfm' 'libmtp' 'libpulse' 'libx11' 'protobuf' 'qjson'
|
'libgpod' 'liblastfm' 'libmtp' 'libpulse' 'libx11' 'protobuf' 'qjson'
|
||||||
'qt4' 'sqlite' 'taglib' 'zlib')
|
'qt4' 'sqlite' 'taglib' 'zlib')
|
||||||
makedepends=('boost' 'cmake' 'mesa' 'sparsehash')
|
makedepends=('boost' 'cmake' 'git' 'mesa' 'sparsehash')
|
||||||
optdepends=('gst-plugins-base: "Base" plugin libraries'
|
optdepends=('gst-plugins-base: "Base" plugin libraries'
|
||||||
'gst-plugins-good: "Good" plugin libraries'
|
'gst-plugins-good: "Good" plugin libraries'
|
||||||
'gst-plugins-bad: "Bad" plugin libraries'
|
'gst-plugins-bad: "Bad" plugin libraries'
|
||||||
'gst-plugins-ugly: "Ugly" plugin libraries'
|
'gst-plugins-ugly: "Ugly" plugin libraries'
|
||||||
'gst-libav: Libav plugin'
|
'gst-libav: Libav plugin'
|
||||||
'gvfs: Various devices support')
|
'gvfs: Various devices support')
|
||||||
source=("clementine-${pkgver}.tar.gz::https://github.com/clementine-player/Clementine/archive/${pkgver}.tar.gz"
|
source=("git+https://github.com/clementine-player/Clementine.git#tag=${pkgver}"
|
||||||
'clementine-gcc6.patch'
|
'clementine-gcc6.patch'
|
||||||
'add-missing-functional-includes-5630.patch'
|
'add-missing-functional-includes-5630.patch'
|
||||||
'clementine-1.3.1-chromaprint-1.4.0.patch'
|
'clementine-1.3.1-chromaprint-1.4.0.patch'
|
||||||
'clementine-cryptopp6.patch'
|
'clementine-cryptopp6.patch'
|
||||||
'https://github.com/clementine-player/Clementine/commit/75f9439843a0e9cdc26cd739d5e1dbd93bd974bc.patch')
|
'https://github.com/clementine-player/Clementine/commit/75f9439843a0e9cdc26cd739d5e1dbd93bd974bc.patch')
|
||||||
sha256sums=('f885931a9ab7c88607d07b50c64fcce46fc05f13dd2c0a04188c94eff938f37c'
|
sha256sums=('SKIP'
|
||||||
'05bd4dc0138eed084332fa1a688a96858418731f337f54e0d8ab0853123f40ee'
|
'05bd4dc0138eed084332fa1a688a96858418731f337f54e0d8ab0853123f40ee'
|
||||||
'213a1c2eb3f3c1d2904ed855ad851c10705d04cfa20b36b843b60003469fdc1a'
|
'213a1c2eb3f3c1d2904ed855ad851c10705d04cfa20b36b843b60003469fdc1a'
|
||||||
'4cc9c9df599df4a595c6acf4e129a54296c0a8e537627435e3df14e1e95447b0'
|
'4cc9c9df599df4a595c6acf4e129a54296c0a8e537627435e3df14e1e95447b0'
|
||||||
|
@ -39,7 +38,12 @@ sha256sums=('f885931a9ab7c88607d07b50c64fcce46fc05f13dd2c0a04188c94eff938f37c'
|
||||||
'd4dbd7f09da7a554f86237476b96e3ca097117b7ab2acd706088c72203d8b64f')
|
'd4dbd7f09da7a554f86237476b96e3ca097117b7ab2acd706088c72203d8b64f')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd Clementine-${pkgver}
|
if [[ -d build ]]; then
|
||||||
|
rm -rf build
|
||||||
|
fi
|
||||||
|
mkdir build
|
||||||
|
|
||||||
|
cd Clementine
|
||||||
|
|
||||||
# Fix build with GCC 6
|
# Fix build with GCC 6
|
||||||
patch -p1 -i ../clementine-gcc6.patch
|
patch -p1 -i ../clementine-gcc6.patch
|
||||||
|
@ -53,17 +57,12 @@ prepare() {
|
||||||
patch -Np1 -i ../75f9439843a0e9cdc26cd739d5e1dbd93bd974bc.patch
|
patch -Np1 -i ../75f9439843a0e9cdc26cd739d5e1dbd93bd974bc.patch
|
||||||
|
|
||||||
[[ $CARCH == "aarch64" ]] && sed -i 's/fpic/fPIC/' 3rdparty/vreen/vreen/cmake/CommonUtils.cmake
|
[[ $CARCH == "aarch64" ]] && sed -i 's/fpic/fPIC/' 3rdparty/vreen/vreen/cmake/CommonUtils.cmake
|
||||||
|
|
||||||
if [[ -d build ]]; then
|
|
||||||
rm -rf build
|
|
||||||
fi
|
|
||||||
mkdir build
|
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd Clementine-${pkgver}/build
|
cd build
|
||||||
|
|
||||||
cmake .. \
|
cmake ../Clementine \
|
||||||
-DCMAKE_BUILD_TYPE='Release' \
|
-DCMAKE_BUILD_TYPE='Release' \
|
||||||
-DCMAKE_INSTALL_PREFIX='/usr'\
|
-DCMAKE_INSTALL_PREFIX='/usr'\
|
||||||
-DCMAKE_CXX_FLAGS="$CXXFLAGS -Wno-catch-value"
|
-DCMAKE_CXX_FLAGS="$CXXFLAGS -Wno-catch-value"
|
||||||
|
@ -71,9 +70,7 @@ build() {
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd Clementine-${pkgver}/build
|
make DESTDIR="${pkgdir}" -C build install
|
||||||
|
|
||||||
make DESTDIR="${pkgdir}" install
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# vim: ts=2 sw=2 et:
|
# vim: ts=2 sw=2 et:
|
||||||
|
|
Loading…
Reference in a new issue