New package: libgusb-0.1.3.

This commit is contained in:
Juan RP 2012-03-19 12:49:39 +01:00
parent 8d9233b442
commit b2452e8ce2
6 changed files with 52 additions and 0 deletions

View File

@ -971,3 +971,4 @@ libdom.so.0 libdom libdom-devel
liblutok.so.0 lutok lutok-devel
libmtdev.so.1 mtdev mtdev-devel
libcryptsetup.so.4 libcryptsetup cryptsetup-devel
libgusb.so.2 libgusb libgusb-devel

1
srcpkgs/libgusb-devel Symbolic link
View File

@ -0,0 +1 @@
libgusb

2
srcpkgs/libgusb/depends Normal file
View File

@ -0,0 +1,2 @@
abi_depends=">=0.1.3"
api_depends="${abi_depends}"

View File

@ -0,0 +1,16 @@
# Template file for 'libgusb-devel'.
#
short_desc="${short_desc} - development files"
long_desc="${long_desc}
This package contains the libgudev development files (static libs, headers,
etc), a library to interact with udev through the GLib bindings."
Add_dependency run libudev-devel
Add_dependency run libgusb
do_install() {
vmove usr/include usr
vmove usr/share usr
vmove usr/lib/pkgconfig usr/lib
}

View File

@ -0,0 +1,10 @@
libgio-2.0.so.0
libgmodule-2.0.so.0
libusb-1.0.so.0
libgudev-1.0.so.0
libgobject-2.0.so.0
libgthread-2.0.so.0
librt.so.1
libglib-2.0.so.0
libpthread.so.0
libc.so.6

22
srcpkgs/libgusb/template Normal file
View File

@ -0,0 +1,22 @@
# Template file for 'libgusb'
pkgname=libgusb
version=0.1.3
distfiles="http://people.freedesktop.org/~hughsient/releases/$pkgname-${version}.tar.xz"
build_style=gnu-configure
configure_args="--disable-static"
short_desc="GLib wrapper around libusb1"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="https://gitorious.org/gusb/"
license="LGPL-2.1"
checksum=4eebb56700d9366c513bfa8f9321a60388f61bade0236a90d66854caea97f0e6
long_desc="
GUsb is a GObject wrapper for libusb1 that makes it easy to do
asynchronous control, bulk and interrupt transfers with proper
cancellation and integration into a mainloop.
This makes it easy to integrate low level USB transfers with your
high-level application or system daemon."
subpackages="${pkgname}-devel"
Add_dependency build pkg-config
Add_dependency build libusb-devel
Add_dependency build libgudev-devel