From 4ed0606aba984ce22c5578f36aabcc6509e90a8c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 12 Jan 2014 02:58:16 +0100 Subject: [PATCH] libftdi: convert to new package format Signed-off-by: Stephan Raue --- packages/devel/libftdi/build | 38 --------------------- packages/devel/libftdi/{meta => package.mk} | 18 ++++++++-- 2 files changed, 16 insertions(+), 40 deletions(-) delete mode 100755 packages/devel/libftdi/build rename packages/devel/libftdi/{meta => package.mk} (71%) diff --git a/packages/devel/libftdi/build b/packages/devel/libftdi/build deleted file mode 100755 index 469e654b45..0000000000 --- a/packages/devel/libftdi/build +++ /dev/null @@ -1,38 +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 - -cd $PKG_BUILD - -ac_cv_path_HAVELIBUSB=$ROOT/$TOOLCHAIN/bin/libusb-config \ -LIBS="-lusb" \ -./configure --host=$TARGET_NAME \ - --build=$HOST_NAME \ - --prefix=/usr \ - --disable-shared \ - --enable-static \ - --disable-libftdipp \ - --disable-python-binding \ - --without-examples \ - --without-docs - -make -$MAKEINSTALL diff --git a/packages/devel/libftdi/meta b/packages/devel/libftdi/package.mk similarity index 71% rename from packages/devel/libftdi/meta rename to packages/devel/libftdi/package.mk index 78f29697fc..15f1caba9d 100644 --- a/packages/devel/libftdi/meta +++ b/packages/devel/libftdi/package.mk @@ -23,11 +23,25 @@ PKG_ARCH="any" PKG_LICENSE="LGPL" PKG_SITE="http://www.intra2net.com/en/developer/libftdi/" PKG_URL="http://www.intra2net.com/en/developer/libftdi/download/libftdi-${PKG_VERSION}.tar.gz" -PKG_DEPENDS="libusb-compat" -PKG_BUILD_DEPENDS="toolchain libusb-compat" +PKG_DEPENDS_TARGET="libusb-compat" +PKG_BUILD_DEPENDS_TARGET="toolchain libusb-compat" PKG_PRIORITY="optional" PKG_SECTION="driver" PKG_SHORTDESC="libFTDI is an open source library to talk to FTDI chips" PKG_LONGDESC="libFTDI is an open source library to talk to FTDI chips" + PKG_IS_ADDON="no" PKG_AUTORECONF="yes" + +PKG_CONFIGURE_OPTS_TARGET="ac_cv_path_HAVELIBUSB=$ROOT/$TOOLCHAIN/bin/libusb-config \ + LIBS=-lusb \ + --disable-shared \ + --enable-static \ + --disable-libftdipp \ + --disable-python-binding \ + --without-examples \ + --without-docs" + +post_makeinstall_target() { + rm -rf $INSTALL/usr/bin +}