44 lines
1.3 KiB
Bash
44 lines
1.3 KiB
Bash
# Template file for 'opkg'
|
|
pkgname=opkg
|
|
version=0.4.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-sha256 --without-libsolv --with-static-libopkg
|
|
$(vopt_enable lz4) $(vopt_if openssl '--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=45ac1e037d3877f635d883f8a555e172883a25d3eeb7986c75890fdd31250a43
|
|
|
|
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"
|
|
}
|
|
}
|