blob: da9f69a8ec70defba15d88d8063fd0c7c49338b4 (
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
|
# $Id: PKGBUILD 222892 2014-09-23 19:56:22Z heftig $
# Maintainer (Arch): Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Maintainer: André Silva <emulatorman@parabola.nu>
pkgname=grilo-plugins
pkgver=0.2.13
pkgrel=1.nonprism1
pkgdesc="Plugins for Grilo, without libgdata and gnome-online-accounts support"
url="http://www.gnome.org"
arch=(i686 x86_64)
license=(LGPL)
replaces=(${pkgname}-nonprism)
conflicts=(${pkgname}-nonprism)
depends=(grilo)
makedepends=(gmime libtracker-sparql libdmapsharing json-glib intltool avahi itstool
libmediaart lua gom)
optdepends=('avahi: Freebox plugin'
'dleyna-server: DLNA plugin'
'gmime: Podcasts plugin'
'gom: Bookmarks plugin'
'json-glib: TMDb plugin'
'libdmapsharing: DMAP sharing plugin'
'libmediaart: local-metadata plugin'
'lua: LUA factory plugin'
'tracker: Tracker plugin')
options=('!emptydirs')
groups=('gnome')
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
sha256sums=('a5544831ba81a4e7caea30da89874fd20142a362d389366e1113d0e64be51201')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --disable-static
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|