blob: b3a23ab6cf6681ec4c1be1ef41a2296ff1a8e770 (
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
|
# $Id: PKGBUILD 175982 2013-01-25 15:12:09Z ioni $
#Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgname=libdmapsharing
pkgver=2.9.16
pkgrel=1
pkgdesc="A library that implements the DMAP family of protocols"
arch=('i686' 'x86_64')
url="http://www.flyn.org/projects/libdmapsharing/index.html"
license=('LGPL2.1')
depends=('libsoup' 'avahi' 'gst-plugins-base-libs' 'gdk-pixbuf2')
options=('!libtool')
source=(http://www.flyn.org/projects/libdmapsharing/$pkgname-$pkgver.tar.gz)
md5sums=('5b2fbf46efc95a503ed95094c72b34d2')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --with-mdns=avahi
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|