blob: dd7e4c5ceafc2340301cbcdccf6be951b299beac (
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
|
# $Id: PKGBUILD 196093 2013-10-07 11:52:19Z jgc $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
pkgname=grilo-plugins
pkgver=0.2.9
pkgrel=2
pkgdesc="Plugins for Grilo"
url="http://www.gnome.org"
arch=('i686' 'x86_64' 'mips64el')
license=(LGPL)
depends=(grilo sqlite libgcrypt)
makedepends=(gupnp-av libgdata gmime rest libtracker-sparql totem-plparser libdmapsharing
json-glib intltool)
optdepends=('gupnp-av: uPnP plugin'
'libgdata: Youtube plugin'
'gmime: Podcasts plugin'
'rest: Blip.tv plugin'
'libtracker-sparql: Tracker plugin'
'totem-plparser: Youtube plugin, Vimeo plugin, Optical media plugin'
'libdmapsharing: DMAP sharing plugin'
'json-glib: TMDb plugin')
options=('!libtool' '!emptydirs')
groups=('gnome')
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
sha256sums=('902b839bd1cdc27613d9e44af2afe00d1ef3b7471ae72c66c622560007e1023e')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --disable-static \
--enable-shoutcast
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|