mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 09:11:38 +01:00
26 lines
704 B
Plaintext
26 lines
704 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libmpdclient
|
|
pkgver=2.6
|
|
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"
|
|
arch="all"
|
|
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
|
|
rm "$pkgdir"/usr/lib/*.la || return 1
|
|
}
|
|
md5sums="adc0a85d9b66850d7cd07516012b6a02 libmpdclient-2.6.tar.bz2"
|