wok-next annotate libgusb/receipt @ rev 21726

updated firefox-official (77.0 -> 81.0)
author Hans-G?nter Theisgen
date Sun Sep 27 14:34:31 2020 +0100 (2020-09-27)
parents d635206a5649
children
rev   line source
al@20406 1 # SliTaz package receipt v2.
al@19691 2
al@19691 3 PACKAGE="libgusb"
al@20679 4 VERSION="0.3.0"
al@19691 5 CATEGORY="libdevel"
al@21020 6 SHORT_DESC="GObject wrapper for libusb1"
al@19691 7 MAINTAINER="al.bobylev@gmail.com"
al@19691 8 LICENSE="LGPL2.1"
al@19691 9 WEB_SITE="https://github.com/hughsie/libgusb"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/libgusb.html"
al@19691 11
al@19691 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@20406 13 WGET_URL="https://people.freedesktop.org/~hughsient/releases/$TARBALL"
al@21156 14 TARBALL_SHA1="25f1cc3455ab6105d8c34305a79876a7c3f707e0"
al@19691 15
al@20679 16 BUILD_DEPENDS="meson ninja glib-dev libusb-dev gobject-introspection-dev vala \
al@20679 17 gtk-doc"
al@21156 18 SPLIT="$PACKAGE-dev $PACKAGE"
al@21156 19
al@21156 20 COPY_dev="@dev gusbcmd" # gusbcmd is a debugging tool for the libgusb library
al@19691 21
al@21081 22 DEPENDS_std="glib libusb"
al@21081 23 DEPENDS_dev="$PACKAGE glib-dev libusb-dev"
al@21081 24
al@20406 25 compile_rules() {
al@20679 26 mkdir build
al@20679 27 cd build
al@20679 28
al@20679 29 meson-wrapper &&
al@20679 30 ninja &&
al@20679 31 ninja install
al@19691 32 }