void-packages/srcpkgs/opkg/template
2019-12-26 13:41:13 +01:00

45 lines
1.3 KiB
Bash

# Template file for 'opkg'
pkgname=opkg
version=0.4.2
revision=1
build_style=gnu-configure
configure_args="--enable-sha256 --without-libsolv --with-static-libopkg
$(vopt_enable lz4) $(vopt_if ssl '--enable-openssl --enable-ssl-curl')
$(vopt_enable gpg)"
hostmakedepends="pkg-config libtool automake"
makedepends="libarchive-devel libcurl-devel $(vopt_if gpg gpgme-devel)
$(vopt_if lz4 liblz4-devel)"
checkdepends="python3"
short_desc="Lightweight package management system, compatible with ipkg"
maintainer="Piraty <piraty1@inbox.ru>"
license="GPL-2.0-or-later"
homepage="http://code.google.com/p/opkg/"
distfiles="https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz"
checksum=86887852c43457edfff9d8b6d9520f3f1cdd55f25eb600a6eb31e1c4e151e106
build_options="gpg lz4 ssl"
build_options_default="ssl"
desc_option_gpg="Enable signature checking with gpgme"
desc_option_ssl="Enable certificate authentication with curl"
pre_configure() {
autoreconf -isf
}
libopkg_package() {
short_desc+=" - runtime libraries"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
libopkg-devel_package() {
short_desc+=" - runtime libraries - development files"
depends="libopkg>=${version}_${revision}"
pkg_install() {
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}