diff options
-rw-r--r-- | testing/libmpdclient/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/libmpdclient/APKBUILD b/testing/libmpdclient/APKBUILD new file mode 100644 index 0000000000..4b43958619 --- /dev/null +++ b/testing/libmpdclient/APKBUILD @@ -0,0 +1,23 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=libmpdclient +pkgver=2.1 +pkgrel=0 +pkgdesc="An asynchronous API library for interfacing MPD in the C, C++ & Objective C languages" +url="http://mpd.wikia.com/wiki/Client:libmpdclient" +license="GPL2" +depends= +makedepends= +subpackages="$pkgname-dev $pkgname-doc" +source="http://downloads.sourceforge.net/musicpd/$pkgname-$pkgver.tar.bz2" + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr || return 1 + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="67efa0c3d107c090ef277dfb3442d1e3 libmpdclient-2.1.tar.bz2" |