From 865668973e8aa60d10a3742e7157a75811792d05 Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Fri, 11 Oct 2013 21:07:35 +0300 Subject: [PATCH] libusb: convert to new package format. --- packages/sysutils/libusb/build | 38 ------------------- packages/sysutils/libusb/install | 27 ------------- packages/sysutils/libusb/{meta => package.mk} | 10 ++++- 3 files changed, 8 insertions(+), 67 deletions(-) delete mode 100755 packages/sysutils/libusb/build delete mode 100755 packages/sysutils/libusb/install rename packages/sysutils/libusb/{meta => package.mk} (86%) diff --git a/packages/sysutils/libusb/build b/packages/sysutils/libusb/build deleted file mode 100755 index 21900eec89..0000000000 --- a/packages/sysutils/libusb/build +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -cd $PKG_BUILD -mkdir -p m4 && do_autoreconf -./configure --host=$TARGET_NAME \ - --build=$HOST_NAME \ - --prefix=/usr \ - --enable-shared \ - --enable-static \ - --disable-log \ - --disable-debug-log \ - --disable-examples-build \ - -make - -$MAKEINSTALL diff --git a/packages/sysutils/libusb/install b/packages/sysutils/libusb/install deleted file mode 100755 index f24d1cf65b..0000000000 --- a/packages/sysutils/libusb/install +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -mkdir -p $INSTALL/usr/lib - cp -P $PKG_BUILD/$1/.libs/libusb*.so* $INSTALL/usr/lib - diff --git a/packages/sysutils/libusb/meta b/packages/sysutils/libusb/package.mk similarity index 86% rename from packages/sysutils/libusb/meta rename to packages/sysutils/libusb/package.mk index 94d1faab89..630f508e6e 100644 --- a/packages/sysutils/libusb/meta +++ b/packages/sysutils/libusb/package.mk @@ -26,11 +26,17 @@ PKG_LICENSE="GPL" PKG_SITE="http://libusb.sourceforge.net/" PKG_URL="$SOURCEFORGE_SRC/libusb/files/$PKG_NAME-$PKG_VERSION.tar.bz2" PKG_DEPENDS="" -PKG_BUILD_DEPENDS="toolchain" +PKG_BUILD_DEPENDS_TARGET="toolchain" PKG_PRIORITY="optional" PKG_SECTION="system" PKG_SHORTDESC="libusb: OS independent USB device access" PKG_LONGDESC="The libusb project's aim is to create a Library for use by user level applications to USB devices regardless of OS." PKG_IS_ADDON="no" -PKG_AUTORECONF="no" +PKG_AUTORECONF="yes" + +PKG_CONFIGURE_OPTS_TARGET="--enable-shared \ + --enable-static \ + --disable-log \ + --disable-debug-log \ + --disable-examples-build"