34 lines
909 B
Bash
34 lines
909 B
Bash
# Template file for 'raft'
|
|
pkgname=raft
|
|
version=0.11.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-example=no"
|
|
hostmakedepends="pkg-config autoconf automake libtool"
|
|
makedepends="libuv-devel liblz4-devel"
|
|
short_desc="C implementation of the Raft consensus protocol"
|
|
maintainer="Julio Galvan <juliogalvan@protonmail.com>"
|
|
license="custom:LGPL-3.0-only-linking-exception"
|
|
homepage="https://github.com/canonical/raft"
|
|
distfiles="https://github.com/canonical/raft/archive/v${version}.tar.gz"
|
|
checksum=c89fd6a6fa3c9e6d670b74e389b2d028dfd39d1eec2b18661fae73a9bfd6b89d
|
|
make_check=ci-skip
|
|
|
|
pre_configure() {
|
|
autoreconf -i
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
raft-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|