mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 07:37:14 +00:00
p7zip: simplify recipe
The plugin-based 7z binary is mostly useless because it can't find the libraries. Simply just install 7za, and install a compatibility symlink for 7z. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -19,24 +19,7 @@ S = "${WORKDIR}/${BPN}_${PV}"
|
|||||||
do_install() {
|
do_install() {
|
||||||
install -d ${D}${bindir}
|
install -d ${D}${bindir}
|
||||||
install -m 0755 ${S}/bin/* ${D}${bindir}
|
install -m 0755 ${S}/bin/* ${D}${bindir}
|
||||||
}
|
ln -s 7za ${D}${bindir}/7z
|
||||||
|
|
||||||
# all3: to build bin/7za, bin/7z (with its plugins), bin/7zr and bin/7zCon.sfx
|
|
||||||
EXTRA_OEMAKE_class-native = "all3"
|
|
||||||
|
|
||||||
do_install_class-native() {
|
|
||||||
install -d ${D}${bindir}
|
|
||||||
install -d ${D}${bindir}/Codecs
|
|
||||||
install -m 0755 ${S}/bin/7* ${D}${bindir}
|
|
||||||
install -m 0755 ${S}/bin/Codecs/* ${D}${bindir}/Codecs
|
|
||||||
|
|
||||||
# Create a shell script wrapper to execute next to 7z.so
|
|
||||||
mv ${D}${bindir}/7z ${D}${bindir}/7z.bin
|
|
||||||
cat > ${D}${bindir}/7z << 'EOF'
|
|
||||||
#!/bin/sh
|
|
||||||
exec "$(dirname "$0")"/7z.bin "$@"
|
|
||||||
EOF
|
|
||||||
chmod 0755 ${D}${bindir}/7z
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BBCLASSEXTEND = "native"
|
BBCLASSEXTEND = "native"
|
||||||
|
|||||||
Reference in New Issue
Block a user