diff --git a/packages/sysutils/fuse-exfat/build b/packages/sysutils/fuse-exfat/build deleted file mode 100755 index b2dd9c616c..0000000000 --- a/packages/sysutils/fuse-exfat/build +++ /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 - -export CCFLAGS="$CFLAGS" - -cd $PKG_BUILD - -scons diff --git a/packages/sysutils/fuse-exfat/install b/packages/sysutils/fuse-exfat/install deleted file mode 100755 index bea0ff5aec..0000000000 --- a/packages/sysutils/fuse-exfat/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/usr/bin - cp $PKG_BUILD/fuse/mount.exfat-fuse $INSTALL/usr/bin - ln -sf mount.exfat-fuse $INSTALL/usr/bin/mount.exfat diff --git a/packages/sysutils/fuse-exfat/meta b/packages/sysutils/fuse-exfat/package.mk similarity index 85% rename from packages/sysutils/fuse-exfat/meta rename to packages/sysutils/fuse-exfat/package.mk index 1ba4622b9f..77162e48f8 100644 --- a/packages/sysutils/fuse-exfat/meta +++ b/packages/sysutils/fuse-exfat/package.mk @@ -24,11 +24,24 @@ PKG_LICENSE="GPL" PKG_SITE="http://code.google.com/p/exfat" PKG_URL="http://exfat.googlecode.com/files/$PKG_NAME-$PKG_VERSION.tar.gz" PKG_DEPENDS="fuse" -PKG_BUILD_DEPENDS="toolchain scons fuse" +PKG_BUILD_DEPENDS_TARGET="toolchain scons fuse" PKG_PRIORITY="optional" PKG_SECTION="system" PKG_SHORTDESC="fuse-exfat: aims to provide a full-featured exFAT file system implementation for GNU/Linux other Unix-like systems as a FUSE module." PKG_LONGDESC="This project aims to provide a full-featured exFAT file system implementation for GNU/Linux other Unix-like systems as a FUSE module." -PKG_IS_ADDON="no" +PKG_IS_ADDON="no" PKG_AUTORECONF="no" + + +make_target() { + export CCFLAGS="$CFLAGS" + + scons +} + +makeinstall_target() { + mkdir -p $INSTALL/usr/bin + cp fuse/mount.exfat-fuse $INSTALL/usr/bin + ln -sf mount.exfat-fuse $INSTALL/usr/bin/mount.exfat +}