wok-next annotate libosinfo/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
rev   line source
al@20684 1 # SliTaz package receipt v2.
al@20684 2
al@20684 3 PACKAGE="libosinfo"
al@21098 4 VERSION="1.2.0"
al@20684 5 CATEGORY="libdevel"
al@20684 6 SHORT_DESC="GObject based library API for managing information about operating \
al@20684 7 systems, hypervisors and the (virtual) hardware devices they can support"
al@20684 8 MAINTAINER="al.bobylev@gmail.com"
al@20684 9 LICENSE="GPL2"
al@20684 10 WEB_SITE="https://libosinfo.org/"
al@20684 11
al@20684 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20684 13 WGET_URL="https://releases.pagure.org/libosinfo/$TARBALL"
al@20684 14
al@20684 15 BUILD_DEPENDS="intltool libxslt-dev libsoup-dev gtk-doc check-dev \
al@21098 16 gobject-introspection-dev vala usbids pciids"
al@21020 17 SPLIT="$PACKAGE-dev"
al@20684 18
al@21098 19 DEPENDS_std="glib libxml2 libxslt"
al@21098 20 DEPENDS_dev="libosinfo glib-dev"
al@21098 21
al@20684 22 compile_rules() {
al@21098 23 fix utf-8
al@20684 24
al@20684 25 ./configure \
al@20684 26 --with-usb-ids-path=/usr/share/hwdata/usb.ids \
al@20684 27 --with-pci-ids-path=/usr/share/hwdata/pci.ids \
al@20684 28 --enable-gtk-doc \
al@20684 29 $CONFIGURE_ARGS &&
al@21098 30 fix libtool &&
al@20684 31 make &&
al@20684 32 make install
al@20684 33 }