mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-07 09:57:50 +00:00
new package: add package 'ntfs-3g'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
30f372acd0
commit
6340bcf75e
@ -86,6 +86,9 @@ case "$2" in
|
||||
[ "$UPOWER" = yes ] && $SCRIPTS/install upower
|
||||
[ "$UPOWER" = yes ] && $SCRIPTS/install ConsoleKit
|
||||
|
||||
# NTFS 3G support
|
||||
[ "$NTFS3G" = yes ] && $SCRIPTS/install ntfs-3g
|
||||
|
||||
# Remote support
|
||||
[ "$REMOTE_SUPPORT" = yes ] && $SCRIPTS/install remote
|
||||
|
||||
|
20
packages/sysutils/ntfs-3g/build
Executable file
20
packages/sysutils/ntfs-3g/build
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options $1
|
||||
|
||||
$SCRIPTS/build toolchain
|
||||
$SCRIPTS/build fuse
|
||||
|
||||
cd $PKG_BUILD
|
||||
./configure --host=$TARGET_NAME \
|
||||
--build=$HOST_NAME \
|
||||
--prefix=/usr \
|
||||
--enable-shared \
|
||||
--disable-static \
|
||||
--disable-dependency-tracking \
|
||||
--with-fuse=external \
|
||||
--disable-library \
|
||||
--enable-posix-acls \
|
||||
--disable-mtab \
|
||||
|
||||
make
|
12
packages/sysutils/ntfs-3g/install
Executable file
12
packages/sysutils/ntfs-3g/install
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options $1
|
||||
|
||||
$SCRIPTS/install fuse
|
||||
|
||||
mkdir -p $INSTALL/bin
|
||||
cp $PKG_BUILD/src/ntfs-3g $INSTALL/bin
|
||||
|
||||
mkdir -p $INSTALL/sbin
|
||||
ln -sf /bin/ntfs-3g $INSTALL/sbin/mount.ntfs
|
||||
ln -sf /bin/ntfs-3g $INSTALL/sbin/mount.ntfs-3g
|
1
packages/sysutils/ntfs-3g/url
Normal file
1
packages/sysutils/ntfs-3g/url
Normal file
@ -0,0 +1 @@
|
||||
http://tuxera.com/opensource/ntfs-3g-2010.8.8.tgz
|
Loading…
x
Reference in New Issue
Block a user