1 # Contributor: Thijs Vermeir <thijsvermeir@gmail.com>
2 # Contributor: Denis Zawada <deno@rootnode.net>
9 pkgdesc="Rygel is an implementation of the UPnP MediaServer V 2.0 \
10 specification that is specifically designed for GNOME (Mobile). It is \
11 based on GUPnP and is written (mostly) in Vala language."
12 arch=('i686' 'x86_64')
13 url="http://live.gnome.org/Rygel"
16 depends=('gupnp>=0.13' 'gupnp-av>=0.5' 'gstreamer0.10' 'libgee>=0.3.0' 'gconf>=2.16' 'dbus-glib' 'libsoup' 'sqlite3')
17 makedepends=('gtk-doc' 'pkgconfig' 'gupnp-vala>=0.6' 'vala>=0.7.8')
18 optdepends=('Tracker Search Daemon'
20 provides=("rygel=${_upver}")
22 replaces=('gupnp-media-server')
30 _gitroot=git://git.gnome.org/${_upname}
35 if [ -d "${_upname}" ] ; then
36 cd "${_upname}" && git pull --rebase || return 1
38 git clone --depth 1 "${_gitroot}" || return 1
41 sh autogen.sh || return 1
42 ./configure --enable-vala \
43 --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
44 --disable-static --enable-gst-launch --enable-test-plugin
46 make DESTDIR=$pkgdir install || return 1