summaryrefslogtreecommitdiff
path: root/libre/clementine-libre/PKGBUILD
blob: 473fd3cce8723278d66fb3aee96a45d00f49e608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# $Id$
#Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
#Contributor: BlackEagle <ike.devolder@gmail.com>
#Contributor: Dany Martineau <dany.luc.martineau@gmail.com>
#Maintainer (Parabola): Kete <kete@ninthfloor.org>
#Contributor (Parabola): André Silva <emulatorman@lavabit.com>

_pkgname=clementine
pkgname=clementine-libre
pkgver=1.0.1
pkgrel=7
pkgdesc="A music player and library organizer, without spotify support"
url="http://www.clementine-player.org/"
license=('GPL')
arch=('i686' 'x86_64')
depends=('gstreamer0.10-base' 'taglib' 'glew' 'liblastfm' 'libgpod'
         'libmtp' 'libplist' 'hicolor-icon-theme' 'qt' 'libimobiledevice'
         'qjson' 'libcdio' 'protobuf' 'qca' 'qca-ossl' 'gvfs')
makedepends=('cmake' 'boost')
optdepends=('gstreamer0.10-base-plugins: for more open formats'
            'gstreamer0.10-good-plugins: for use with "Good" plugin libraries'
            'gstreamer0.10-bad-libre-plugins: for use with "Bad" plugin libraries'
            'gstreamer0.10-ugly-plugins: for use with "Ugly" plugin libraries')
replaces=('clementine')
conflicts=('clementine')
provides=("clementine=$pkgver")
source=(http://clementine-player.googlecode.com/files/${_pkgname}-${pkgver}.tar.gz
        clementine-fix-albumcoverfetch-crash.patch
        clementine-fresh-start.patch
        imobiledevice.patch
        remove-and-disable-spotify.patch
        remove-nonfree-references-on-translations.patch)
sha1sums=('e05320da689e2fad744fd3e68518bc4103ecf0fd'
          'fddd2e784181ce1dcc7809e7122cbade0af7b01f'
          'd8abab4b8fb2d5284a2f43107505325e62d4af5f'
          'a04cec00e38651de78bfaa6b6d73532c3786de11'
          '2fef46eaffa7b5cd61afbf19b1dc909d11972a34'
          '745bc4fd639d7ef3230592c6275fb43b8956f3d5')
install=clementine.install

build() {
   cd "${srcdir}/${_pkgname}-${pkgver}"

   # https://bugs.gentoo.org/401713?id=401713
   patch -Np1 -i ../clementine-fresh-start.patch

   # http://code.google.com/p/clementine-player/issues/detail?id=2752
   patch -Np1 -i ../clementine-fix-albumcoverfetch-crash.patch

   # Use libimobiledevice new "udid" field instead of "uuid".
   patch -Np1 -i ../imobiledevice.patch

   # https://labs.parabola.nu/issues/99
   patch -Np1 -i ../remove-and-disable-spotify.patch
   patch -Np1 -i ../remove-nonfree-references-on-translations.patch

   # Remove nonfree spotifyblob folder
   rm -Rf "./spotifyblob"

   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
   make
}

package() {
   cd "${srcdir}/${_pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install
}