mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-17 11:42:31 +02:00
25 lines
691 B
Plaintext
25 lines
691 B
Plaintext
# Contributor: David Demelier <markand@malikania.fr>
|
|
# Maintainer: David Demelier <markand@malikania.fr>
|
|
pkgname=serd
|
|
pkgver=0.30.2
|
|
pkgrel=0
|
|
pkgdesc="lightweight C library for RDF syntax"
|
|
url="http://drobilla.net/software/serd"
|
|
arch="all"
|
|
license="ISC"
|
|
makedepends="python3"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://download.drobilla.net/serd-$pkgver.tar.bz2"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
python3 waf configure --prefix=/usr
|
|
python3 waf build
|
|
}
|
|
|
|
package() {
|
|
python3 waf install --destdir="$pkgdir"
|
|
}
|
|
|
|
sha512sums="b1e18ac883aac2a8146ee0e1de553ac2b512deba5307e5c9fa2733d9011ed0777d67790aa6527e73b3f11c9da0d8c9a98227457bb412897296f4464228cac0f7 serd-0.30.2.tar.bz2"
|