contrib/clementine/Pkgfile

27 lines
969 B
Plaintext
Raw Normal View History

2013-11-02 00:44:14 +01:00
# Description: A music player and library organizer.
2020-06-01 17:45:48 +02:00
# URL: https://www.clementine-player.org/
2013-11-02 00:44:14 +01:00
# Packager: Chris Farrell, timcowchip at gmail dot com
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: boost crypto++ glew gst-plugins-bad gst-plugins-good gst-plugins-ugly protobuf qt5
2013-11-02 00:44:14 +01:00
name=clementine
2020-04-18 15:47:36 +02:00
version=1.4.0rc1-169
release=1
2020-04-18 15:47:36 +02:00
source=(https://github.com/clementine-player/Clementine/archive/$version-g934fd336d/$name-$version-g934fd336d.tar.gz
clementine-gcc6.patch)
2013-11-02 00:44:14 +01:00
build() {
# make sure we do not have ccache masquerade directory in PATH
# as cmake calls ccache directly, this avoids recursvely
# calling ccache and CCACHE_PREFIX
PATH=$(echo ${PATH} | awk -v RS=: -v ORS=: '/ccache/ {next} {print}' | sed 's/:*$//')
2020-06-01 17:45:48 +02:00
cmake -SClementine-$version-g934fd336d -Bbuild \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE='Release' \
-DCMAKE_CXX_FLAGS="$CXXFLAGS -Wno-catch-value"
2014-10-28 12:48:00 +01:00
2020-04-18 15:47:36 +02:00
cmake --build build
2020-07-08 15:01:36 +02:00
DESTDIR=$PKG cmake --install build
2013-11-02 00:44:14 +01:00
}