contrib/clementine/Pkgfile

25 lines
624 B
Plaintext
Raw Normal View History

2013-11-02 00:44:14 +01:00
# Description: A music player and library organizer.
# URL: http://www.clementine-player.org/
# Packager: Chris Farrell, timcowchip at gmail dot com
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2016-09-10 06:10:23 +02:00
# Depends on: boost chromaprint crypto++ glew gst-plugins-bad gst-plugins-good gst-plugins-ugly libechonest protobuf qca glu
2013-11-02 00:44:14 +01:00
name=clementine
version=1.3.1
release=1
source=(https://github.com/clementine-player/Clementine/archive/$version.tar.gz)
2013-11-02 00:44:14 +01:00
build() {
2014-05-23 04:46:45 +02:00
cd Clementine-$version
2014-10-28 12:48:00 +01:00
install -d build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE='Release'
2014-10-28 12:48:00 +01:00
2013-11-02 00:44:14 +01:00
make
make DESTDIR=$PKG install
}