0df7f912a1
* no `opkg.conf` file included. You have to build your own. * opkg itself statically links libopkg via `--with-static-libopkg`
43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
# Template file for 'opkg'
|
|
pkgname=opkg
|
|
version=0.4.0
|
|
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 lz4-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=f6c00515d8a2ad8f6742a8e73830315d1983ed0459cba77c4d656cfc9e7fe6fe
|
|
|
|
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"
|
|
}
|
|
}
|