contrib/clementine/Pkgfile
2020-01-12 16:39:25 +11:00

31 lines
911 B
Plaintext

# Description: A music player and library organizer.
# URL: http://www.clementine-player.org/
# Packager: Chris Farrell, timcowchip at gmail dot com
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: boost crypto++ glew gst-plugins-bad gst-plugins-good gst-plugins-ugly protobuf qt5
name=clementine
version=1.4.0rc1
release=1
source=(https://github.com/clementine-player/Clementine/archive/$version/$name-$version.tar.gz)
build() {
cd Clementine-$version
install -d build
cd 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/:*$//')
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE='Release' \
-DCMAKE_CXX_FLAGS="$CXXFLAGS -Wno-catch-value"
make
make DESTDIR=$PKG install
}