# Template file for 'opkg' pkgname=opkg version=0.4.5 revision=1 build_style=gnu-configure configure_args="--enable-sha256 --without-libsolv --with-static-libopkg $(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)" checkdepends="python3" short_desc="Lightweight package management system, compatible with ipkg" maintainer="Piraty " 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=a1214a75fa34fb9228db8da47308e0e711b1c93fd8938cf164c10fd28eb50f1e 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" } }