diff options
Diffstat (limited to 'libre/clementine-libre/PKGBUILD')
-rw-r--r-- | libre/clementine-libre/PKGBUILD | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/libre/clementine-libre/PKGBUILD b/libre/clementine-libre/PKGBUILD index 4cc986be1..22a92003d 100644 --- a/libre/clementine-libre/PKGBUILD +++ b/libre/clementine-libre/PKGBUILD @@ -1,21 +1,21 @@ -# $Id: PKGBUILD 94971 2013-08-01 22:31:55Z alucryd $ +# $Id: PKGBUILD 98608 2013-10-15 14:50:08Z alucryd $ # Maintainer: Maxime Gauduin <alucryd@gmail.com> # Contributor: Stéphane Gaudreault <stephane@archlinux.org> # Contributor: BlackEagle <ike.devolder@gmail.com> # Contributor: Dany Martineau <dany.luc.martineau@gmail.com> -# Maintainer (Parabola): André Silva <emulatorman@lavabit.com> +# Maintainer (Parabola): André Silva <emulatorman@parabola.nu> # Contributor (Parabola): Kete <kete@ninthfloor.org> # Contributor (Parabola): Márcio Silva <coadde@lavabit.com> _pkgname=clementine pkgname=clementine-libre -pkgver=1.1.1 -pkgrel=9 +pkgver=1.2.0 +pkgrel=1 pkgdesc="A music player and library organizer, without nonfree artwork and spotify support" url="http://www.clementine-player.org/" license=('GPL') arch=('i686' 'x86_64') -depends=('chromaprint' 'gstreamer0.10-base' 'libcdio' 'libgpod' 'liblastfm' 'libmtp' 'projectm' 'protobuf' 'qca-ossl' 'qjson' 'taglib') +depends=('chromaprint' 'glew' 'gstreamer0.10-base' 'libcdio' 'libgpod' 'liblastfm' 'libmtp' 'libmygpo-qt' 'protobuf' 'qca-ossl' 'taglib') makedepends=('cmake' 'boost' 'mesa' 'sparsehash') optdepends=('gstreamer0.10-base-plugins: "Base" plugin libraries' 'gstreamer0.10-good-plugins: "Good" plugin libraries' @@ -27,19 +27,15 @@ conflicts=('clementine') provides=("clementine=$pkgver") install=clementine.install source=("http://clementine-player.googlecode.com/files/${_pkgname}-${pkgver}.tar.gz" - 'clementine-1.1.1-libimobiledevice-fix.patch' 'remove-nonfree-artwork-and-spotify.patch' 'moognu.png') -md5sums=('28e4afb822388bd337a761db8f86febf' - '736df6cd828a3172701f63c8dc978cb9' - '9ccfe62f8784a1ccbe8c96f8cacad9d0' - '59a8c0d7659898c457b95f877718cf1c') +sha256sums=('563d00da4e893f7b1966ed137bcab28042151e31ea561cb7076047d3cad96f72' + 'e3b0ba3649d6c66ef002ce281949ab6febf2481893245b4e30c6f11ae6f5b463' + 'c6918617769152f3617c61f721819e69d03f671b85760b11cfe45abd53955bc4') prepare() { cd ${_pkgname}-${pkgver} - patch -Np1 -i ../clementine-1.1.1-libimobiledevice-fix.patch - # remove nonfree nonfree artwork and spotify references on files patch -Np1 -i ../remove-nonfree-artwork-and-spotify.patch @@ -48,7 +44,7 @@ prepare() { # remove nonfree spotify files rm -v cmake/SpotifyVersion.cmake - rm -v data/spotify-core-logo-128x128.png + rm -v data/spotify-attribution.png rm -v data/icons/svg/spotify.svg rm -v data/schema/schema-30.sql rm -v src/{globalsearch/spotifysearchprovider.{cpp,h},internet/spotify{blobdownloader.{cpp,h},server.{cpp,h},service.{cpp,h},settingspage.{cpp,h,ui}}} @@ -71,7 +67,7 @@ build() { fi mkdir build && cd build - cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DUSE_SYSTEM_PROJECTM=1 -DBUILD_WERROR=0 + cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' make } |