mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 09:16:19 +00:00
c2a52dc4ac
The -l option to 7za is not included the 7-Zip 22.01 version, it was an option added to the p7zip version: don't store symlinks; store the files/directories they point to (CAUTION : the scanning stage can never end because of recursive symlinks like 'ln -s .. ldir') The default for p7zip 16.02 7za was to store symlinks. The default for 7-zip 22.01 7za is not to store symlinks. test output is below and the -l option has been dropped from scripts/install_addon $ ls -l test total 4 -rw-r--r-- 1 docker docker 4 Jan 29 10:35 abc lrwxrwxrwx 1 docker docker 3 Jan 29 10:35 def -> abc 7-Zip (a) 22.01 (x64) : Copyright (c) 1999-2022 Igor Pavlov : 2022-07-15 64-bit locale=en_US.UTF-8 Threads:16 $ 7za a -mx9 -bsp0 -bso0 -tzip test.zip test $ unzip -v test.zip Archive: test.zip Length Method Size Cmpr Date Time CRC-32 Name -------- ------ ------- ---- ---------- ----- -------- ---- 0 Stored 0 0% 2023-01-29 10:36 00000000 test/ 4 Stored 4 0% 2023-01-29 10:35 4788814e test/abc 4 Stored 4 0% 2023-01-29 10:35 4788814e test/def -------- ------- --- ------- 8 8 0% 3 files 7-Zip (a) [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21 p7zip Version 16.02 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,16 CPUs x64) $ 7za a -mx9 -bsp0 -bso0 -tzip test.zip test $ unzip -v test.zip Length Method Size Cmpr Date Time CRC-32 Name -------- ------ ------- ---- ---------- ----- -------- ---- 0 Stored 0 0% 2023-01-29 10:35 00000000 test/ 4 Stored 4 0% 2023-01-29 10:35 4788814e test/abc 3 Stored 3 0% 2023-01-29 10:35 352441c2 test/def -------- ------- --- ------- 7 7 0% 3 files 7-Zip (a) [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21 p7zip Version 16.02 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,16 CPUs x64) $ 7za a -l -mx9 -bsp0 -bso0 -tzip test.zip test $ unzip -v test.zip Archive: test.zip Length Method Size Cmpr Date Time CRC-32 Name -------- ------ ------- ---- ---------- ----- -------- ---- 0 Stored 0 0% 2023-01-29 10:35 00000000 test/ 4 Stored 4 0% 2023-01-29 10:35 4788814e test/abc 4 Stored 4 0% 2023-01-29 10:35 4788814e test/def -------- ------- --- ------- 8 8 0% 3 files
59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="sundtek-mediatv"
|
|
PKG_VERSION="7.0"
|
|
PKG_REV="0"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="nonfree"
|
|
PKG_SITE="http://support.sundtek.com/"
|
|
PKG_URL=""
|
|
PKG_DEPENDS_TARGET="xmlstarlet:host 7-zip:host"
|
|
PKG_SECTION="driver/dvb"
|
|
PKG_SHORTDESC="Sundtek MediaTV: a Linux driver to add support for SUNDTEK USB DVB devices"
|
|
PKG_LONGDESC="Install this to add support for Sundtek USB DVB devices."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
PKG_IS_ADDON="yes"
|
|
PKG_ADDON_NAME="Sundtek MediaTV"
|
|
PKG_ADDON_TYPE="xbmc.service"
|
|
|
|
make_target() {
|
|
mkdir -p ${PKG_BUILD}
|
|
cd ${PKG_BUILD}
|
|
|
|
case ${TARGET_ARCH} in
|
|
x86_64)
|
|
INSTALLER_URL="http://sundtek.de/media/netinst/64bit/installer.tar.gz"
|
|
;;
|
|
arm)
|
|
INSTALLER_URL="http://sundtek.de/media/netinst/armsysvhf/installer.tar.gz"
|
|
;;
|
|
aarch64)
|
|
INSTALLER_URL="http://sundtek.de/media/netinst/arm64/installer.tar.gz"
|
|
;;
|
|
esac
|
|
|
|
wget -O installer.tar.gz ${INSTALLER_URL}
|
|
|
|
tar -xzf installer.tar.gz
|
|
|
|
chmod -R 755 opt/ etc/
|
|
|
|
rm -f opt/bin/getinput.sh
|
|
rm -f opt/bin/lirc.sh
|
|
rm -fr opt/lib/pm/
|
|
|
|
wget -O version.used http://sundtek.de/media/latest.phtml
|
|
}
|
|
|
|
addon() {
|
|
mkdir -p ${ADDON_BUILD}/${PKG_ADDON_ID}/config/
|
|
cp -P ${PKG_DIR}/config/* ${ADDON_BUILD}/${PKG_ADDON_ID}/config/
|
|
cp -P ${PKG_DIR}/settings-default.xml ${ADDON_BUILD}/${PKG_ADDON_ID}/
|
|
cp -Pa ${PKG_BUILD}/opt/bin ${ADDON_BUILD}/${PKG_ADDON_ID}/
|
|
cp -Pa ${PKG_BUILD}/opt/lib ${ADDON_BUILD}/${PKG_ADDON_ID}/
|
|
cp ${PKG_BUILD}/version.used ${ADDON_BUILD}/${PKG_ADDON_ID}/
|
|
}
|