diff --git a/packages/sysutils/usbutils/build b/packages/sysutils/usbutils/build deleted file mode 100755 index 451d8dc0df..0000000000 --- a/packages/sysutils/usbutils/build +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv) -# -# OpenELEC 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 of the License, or -# (at your option) any later version. -# -# OpenELEC 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. If not, see . -################################################################################ - -. config/options $1 - -cd $PKG_BUILD -./configure --host=$TARGET_NAME \ - --build=$HOST_NAME \ - --prefix=/usr \ - -make - -mkdir -p $SYSROOT_PREFIX/usr/lib/pkgconfig -cp -f usbutils.pc $SYSROOT_PREFIX/usr/lib/pkgconfig diff --git a/packages/sysutils/usbutils/install b/packages/sysutils/usbutils/install deleted file mode 100755 index 26c808c139..0000000000 --- a/packages/sysutils/usbutils/install +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv) -# -# OpenELEC 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 of the License, or -# (at your option) any later version. -# -# OpenELEC 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. If not, see . -################################################################################ - -. config/options $1 - -mkdir -p $INSTALL/usr/bin - cp -P $PKG_BUILD/lsusb $INSTALL/usr/bin - -mkdir -p $INSTALL/usr/share/misc - cp $PKG_DIR/config/usb.ids $INSTALL/usr/share diff --git a/packages/sysutils/usbutils/meta b/packages/sysutils/usbutils/package.mk similarity index 80% rename from packages/sysutils/usbutils/meta rename to packages/sysutils/usbutils/package.mk index 75c4f7e769..7b1bfe3056 100644 --- a/packages/sysutils/usbutils/meta +++ b/packages/sysutils/usbutils/package.mk @@ -23,12 +23,23 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://www.linux-usb.org/" PKG_URL="http://kernel.org/pub/linux/utils/usb/usbutils/$PKG_NAME-$PKG_VERSION.tar.xz" -PKG_DEPENDS="zlib libusb" -PKG_BUILD_DEPENDS="toolchain zlib libusb" +PKG_DEPENDS_TARGET="zlib libusb" +PKG_BUILD_DEPENDS_TARGET="toolchain zlib libusb" PKG_PRIORITY="optional" PKG_SECTION="system" PKG_SHORTDESC="usbutils: Linux USB Utilities" PKG_LONGDESC="This package contains various utilities for inspecting and setting of devices connected to the USB bus. Requires a kernel version including usbdevfs support - and this usbdevfs mounted to /proc/bus/usb." -PKG_IS_ADDON="no" +PKG_IS_ADDON="no" PKG_AUTORECONF="yes" + +makeinstall_target() { + mkdir -p $SYSROOT_PREFIX/usr/lib/pkgconfig + cp -f usbutils.pc $SYSROOT_PREFIX/usr/lib/pkgconfig + + mkdir -p $INSTALL/usr/bin + cp -P lsusb $INSTALL/usr/bin + + mkdir -p $INSTALL/usr/share + cp $PKG_DIR/config/usb.ids $INSTALL/usr/share +}