void-packages/srcpkgs/fwupdate/template
Lugubris d78cb0d201 Drop maintainership of orphaned packages
some packages were dropped but their maintainer= was not updated in template.
this will help new maintainers adopt these packages.

-> https://github.com/void-linux/void-packages/pull/13930#issuecomment-524610652
2019-08-25 21:16:43 +02:00

53 lines
1.5 KiB
Bash

# Template file for 'fwupdate'
pkgname=fwupdate
version=12
revision=1
archs="x86_64* i686* aarch64* arm*"
build_style=gnu-makefile
make_install_args="EFIDIR=void LIBDIR=/usr/lib"
make_build_args="EFIDIR=void GNUEFIDIR=/usr/lib"
hostmakedepends="pkg-config"
makedepends="elfutils-devel gnu-efi-libs libefivar-devel popt-devel"
checkdepends="libabigail-tools"
short_desc="Tool for using the ESRT and UpdateCapsule() to apply firmware updates"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="https://github.com/rhboot/fwupdate"
distfiles="https://github.com/rhboot/fwupdate/releases/download/${version}/fwupdate-${version}.tar.bz2"
checksum=4167d569f14e00ecf620c369ab34709e4bb1574ed588ef2e2398667e9e968703
nocross="fails to find efi.h"
case "$XBPS_TARGET_MACHINE" in
x86_64|i686) makedepends+=" libsmbios-devel" ;;
esac
do_check() {
EFIDIR=void make abicheck
}
post_install() {
vmkdir usr/lib/fwupdate
mv "${DESTDIR}"/boot/efi/EFI "${DESTDIR}"/usr/lib/fwupdate/EFI
rm -rf "${DESTDIR}"/boot
rm -rf "${DESTDIR}"/usr/src
rm -rf "${DESTDIR}"/usr/lib/debug
rm -rf "${DESTDIR}"/usr/lib/systemd
}
libfwup_package() {
short_desc+=" - fwupdate library"
pkg_install() {
vmove "usr/lib/libfwup.so.*"
}
}
fwupdate-devel_package() {
depends="libfwup-${version}_${revision} libefivar-devel"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/libfwup.so
vmove usr/share/man/man3
}
}