PKGBUILDs/community/clementine/PKGBUILD

108 lines
2.4 KiB
Bash
Raw Normal View History

2018-03-22 01:05:16 +00:00
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
# Contributor: BlackEagle <ike.devolder@gmail.com>
# Contributor: Dany Martineau <dany.luc.martineau@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - fix fPIC on AArch64
pkgname=clementine
pkgver=1.3.1
2019-03-12 23:40:17 +00:00
pkgrel=21
2018-03-22 01:05:16 +00:00
pkgdesc='A modern music player and library organizer'
2019-03-12 23:40:17 +00:00
url=https://www.clementine-player.org/
license=(GPL)
arch=(x86_64)
depends=(
chromaprint
crypto++
fftw
glew
glib2
gst-plugins-base-libs
gstreamer
libcdio
libechonest
libgl
libgpod
liblastfm
libmtp
libpulse
libx11
protobuf
qjson
qt4
sqlite
taglib
zlib
)
makedepends=(
boost
cmake
git
mesa
sparsehash
)
optdepends=(
'gst-plugins-base: "Base" plugin libraries'
'gst-plugins-good: "Good" plugin libraries'
'gst-plugins-bad: "Bad" plugin libraries'
'gst-plugins-ugly: "Ugly" plugin libraries'
'gst-libav: Libav plugin'
'gvfs: Various devices support'
)
source=(
git+https://github.com/clementine-player/Clementine.git#tag=${pkgver}
clementine-gcc6.patch
clementine-chromaprint1.4.0.patch
clementine-cryptopp6.patch
)
sha256sums=(
SKIP
05bd4dc0138eed084332fa1a688a96858418731f337f54e0d8ab0853123f40ee
4cc9c9df599df4a595c6acf4e129a54296c0a8e537627435e3df14e1e95447b0
e9c09dca76ed8fae2ecb089571396c9293f546871fb2f27cc37010dd5cba9e46
)
2018-03-22 01:05:16 +00:00
prepare() {
2018-09-14 12:38:23 +00:00
if [[ -d build ]]; then
rm -rf build
fi
mkdir build
cd Clementine
2018-03-22 01:05:16 +00:00
# Fix build with GCC 6
patch -p1 -i ../clementine-gcc6.patch
# https://github.com/clementine-player/Clementine/pull/5630
2018-09-25 23:21:30 +00:00
git cherry-pick -n 8a6cc8b5069265e1e92e22def985e22c5955e503
2018-03-22 01:05:16 +00:00
# Fix build with chromaprint 1.4.0
2018-09-25 23:21:30 +00:00
patch -p1 -i ../clementine-chromaprint1.4.0.patch
2018-03-22 01:05:16 +00:00
# Fix build with crypto++ 6.0.0 due to https://github.com/weidai11/cryptopp/issues/442
patch -p1 -i ../clementine-cryptopp6.patch
2018-05-02 12:34:45 +00:00
# FS#58413
2018-09-25 23:21:30 +00:00
git cherry-pick -n -m 1 75f9439843a0e9cdc26cd739d5e1dbd93bd974bc
# Fix DI.FM
git cherry-pick -n ddfa5e63f1ef0e243a007efbe576fceb9b2442e8
2018-03-22 01:05:16 +00:00
2018-09-14 13:44:33 +00:00
if [[ $CARCH == "aarch64" ]]; then
sed -i 's/fpic/fPIC/' 3rdparty/vreen/vreen/cmake/CommonUtils.cmake
fi
2018-03-22 01:05:16 +00:00
}
build() {
2018-09-14 12:38:23 +00:00
cd build
2018-03-22 01:05:16 +00:00
2018-09-14 12:38:23 +00:00
cmake ../Clementine \
2019-03-12 23:40:17 +00:00
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr\
2018-08-06 13:06:22 +00:00
-DCMAKE_CXX_FLAGS="$CXXFLAGS -Wno-catch-value"
2018-03-22 01:05:16 +00:00
make
}
package() {
2018-09-14 12:38:23 +00:00
make DESTDIR="${pkgdir}" -C build install
2018-03-22 01:05:16 +00:00
}
# vim: ts=2 sw=2 et: