diff --git a/packages/linux-drivers/vboxguest/build b/packages/linux-drivers/vboxguest/build deleted file mode 100755 index 9b0c33a4fa..0000000000 --- a/packages/linux-drivers/vboxguest/build +++ /dev/null @@ -1,24 +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 $BUILD/${PKG_NAME}-${PKG_VERSION} - LDFLAGS="" make KERN_DIR=$(kernel_path) diff --git a/packages/linux-drivers/vboxguest/install b/packages/linux-drivers/vboxguest/install deleted file mode 100755 index afc4d774a6..0000000000 --- a/packages/linux-drivers/vboxguest/install +++ /dev/null @@ -1,25 +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/lib/modules/`kernel_version`/vboxguest -find $BUILD/${PKG_NAME}-${PKG_VERSION}/*.ko -name \*.ko -exec cp {} $INSTALL/lib/modules/`kernel_version`/vboxguest \; - diff --git a/packages/linux-drivers/vboxguest/meta b/packages/linux-drivers/vboxguest/package.mk similarity index 80% rename from packages/linux-drivers/vboxguest/meta rename to packages/linux-drivers/vboxguest/package.mk index eb6c9f0027..e83aef2292 100644 --- a/packages/linux-drivers/vboxguest/meta +++ b/packages/linux-drivers/vboxguest/package.mk @@ -23,12 +23,26 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://www.virtualbox.org" PKG_URL="${DISTRO_SRC}/${PKG_NAME}-${PKG_VERSION}.tar.bz2" -PKG_DEPENDS="" -PKG_BUILD_DEPENDS="toolchain linux" +PKG_DEPENDS_TARGET="" +PKG_BUILD_DEPENDS_TARGET="toolchain linux" PKG_NEED_UNPACK="$LINUX_DEPENDS" PKG_PRIORITY="optional" PKG_SECTION="driver" PKG_SHORTDESC="vboxguest" PKG_LONGDESC="vboxguest" + PKG_IS_ADDON="no" PKG_AUTORECONF="no" + +pre_make_target() { + unset LDFLAGS +} + +make_target() { + make KERN_DIR=$(kernel_path) +} + +makeinstall_target() { + mkdir -p $INSTALL/lib/modules/`kernel_version`/$PKG_NAME + cp *.ko $INSTALL/lib/modules/`kernel_version`/$PKG_NAME +}