summaryrefslogtreecommitdiff
path: root/package/libusb-compat
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-05-31 17:53:55 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-05-31 17:53:55 +0200
commit1cd31f169fab4ab0ce45617c161da3fec9f7359d (patch)
treee705bef0fbb742cafc1ca64b6c786db1b82622ab /package/libusb-compat
parent5e82ed3e9ada7f5c9e66db5568032a49f66a6e93 (diff)
fix regressions from ipkg rework
- remove old glib1 lib - rename glib2 -> glib - rename libgdbm -> gdbm - remove obsoleted wireless-tools, use iw - remove upstream unmaintained slurm make allmodconfig runs through on Debian/lenny amd64 for alix1c target
Diffstat (limited to 'package/libusb-compat')
-rw-r--r--package/libusb-compat/Config.in9
-rw-r--r--package/libusb-compat/Makefile31
2 files changed, 40 insertions, 0 deletions
diff --git a/package/libusb-compat/Config.in b/package/libusb-compat/Config.in
new file mode 100644
index 000000000..37ed69949
--- /dev/null
+++ b/package/libusb-compat/Config.in
@@ -0,0 +1,9 @@
+config ADK_PACKAGE_LIBUSB_COMPAT
+ prompt "libusb-compat...................... A library for accessing Linux USB devices"
+ tristate
+ default n
+ help
+ A library for accessing Linux USB devices
+
+ http://libusb.sourceforge.net/
+
diff --git a/package/libusb-compat/Makefile b/package/libusb-compat/Makefile
new file mode 100644
index 000000000..82fd5e34f
--- /dev/null
+++ b/package/libusb-compat/Makefile
@@ -0,0 +1,31 @@
+# $Id$
+#-
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME:= libusb-compat
+PKG_VERSION:= 0.1.1
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 32c775b97da7a11c6be7c487a0c9fc00
+PKG_DESCR:= a Library for accessing Linux USB devices
+PKG_SECTION:= libs
+PKG_URL:= http://libusb.wiki.sourceforge.net
+PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=libusb/}
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,LIBUSB_COMPAT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE:= gnu
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto confprog
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_LIBUSB_COMPAT}/usr/lib
+ ${CP} ${WRKINST}/usr/lib/libusb*.so* ${IDIR_LIBUSB_COMPAT}/usr/lib/
+
+include ${TOPDIR}/mk/pkg-bottom.mk