mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 05:36:47 +00:00
new package:
- add package e2fsprogs
This commit is contained in:
parent
ea6a387f8a
commit
304503da24
24
packages/sysutils/e2fsprogs/build
Executable file
24
packages/sysutils/e2fsprogs/build
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
$SCRIPTS/build toolchain
|
||||
|
||||
cd $PKG_BUILD
|
||||
./configure --host=$TARGET_NAME \
|
||||
--build=$HOST_NAME \
|
||||
--prefix=/usr \
|
||||
--enable-shared \
|
||||
--disable-static \
|
||||
--disable-libuuid \
|
||||
--disable-libblkid \
|
||||
--disable-debugfs \
|
||||
--disable-imager \
|
||||
--disable-resizer \
|
||||
--disable-uuidd \
|
||||
|
||||
make -C lib/et
|
||||
make -C lib/ext2fs
|
||||
|
||||
$MAKEINSTALL -C lib/et
|
||||
$MAKEINSTALL -C lib/ext2fs
|
17
packages/sysutils/e2fsprogs/install
Executable file
17
packages/sysutils/e2fsprogs/install
Executable file
@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
mkdir -p $INSTALL/bin
|
||||
cp $PKG_BUILD/mount/.libs/mount $INSTALL/bin
|
||||
cp $PKG_BUILD/mount/.libs/umount $INSTALL/bin
|
||||
|
||||
mkdir -p $INSTALL/sbin
|
||||
cp $PKG_BUILD/fdisk/sfdisk $INSTALL/sbin
|
||||
cp $PKG_BUILD/misc-utils/.libs/blkid $INSTALL/sbin
|
||||
|
||||
mkdir -p $INSTALL/usr/lib
|
||||
cp -PR $PKG_BUILD/shlibs/blkid/src/.libs/libblkid.so* $INSTALL/usr/lib
|
||||
rm -rf $INSTALL/usr/lib/libblkid.so*T
|
||||
cp -PR $PKG_BUILD/shlibs/uuid/src/.libs/libuuid.so* $INSTALL/usr/lib
|
||||
rm -rf $INSTALL/usr/lib/libuuid.so*T
|
1
packages/sysutils/e2fsprogs/url
Normal file
1
packages/sysutils/e2fsprogs/url
Normal file
@ -0,0 +1 @@
|
||||
http://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-1.41.11.tar.gz
|
Loading…
x
Reference in New Issue
Block a user