mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
42 lines
1012 B
Plaintext
42 lines
1012 B
Plaintext
# Contributor: Carlo Landmeter
|
|
# Maintainer:
|
|
pkgname=libcddb
|
|
pkgver=1.3.2
|
|
pkgrel=3
|
|
pkgdesc="Library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g. http://freedb.org)."
|
|
url="https://sourceforge.net/projects/libcddb/"
|
|
arch="all"
|
|
options="!check" # Tests are known broken since 2009:
|
|
# https://sourceforge.net/p/libcddb/bugs/7/
|
|
license="LGPL-2.0+"
|
|
depends=
|
|
makedepends=
|
|
install=
|
|
subpackages="$pkgname-dev"
|
|
source="https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2"
|
|
|
|
prepare() {
|
|
cd "$builddir"
|
|
update_config_sub
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="0e07e7d37f2013164d75b530a5528f54847271fd20f3b7bedb192a05d1f61dcf006d10dc2927efe155a01eddcc57b940bc31d8ac88d5dfc4f1a09771caa84e0a libcddb-1.3.2.tar.bz2"
|