Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/libarchive.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
31 lines (25 sloc)
898 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION libarchive-3.3.3-0 | |
SRCURL[0]="https://www.libarchive.org/downloads/libarchive-${PKGVERSION}.tar.gz" | |
# Diese kloppskoepfe kuemmern sich einen dreck um so.versions | |
# | |
# libarchive-3.1.2 libarchive-3.2.1 | |
# | |
# cmake build libarchive.so.14 libarchive.so.15 | |
# autotool build libarchive.so.13.1.2 libarchive.so.13.2.1 | |
# | |
# laut aussage der entwickler sind die 3er ABIs stabil | |
# | |
# also: libarchive mit ./configure und noch n symlink namens 'libarchive.so.14' | |
# Hirn: {F}:download, {S}:source, {B}:build, {D}:image | |
function mee_patch() { | |
( cd ${S}; rm -v CMakeLists.txt; sleep 3 ) # defeat cmake | |
} | |
function mee_install() { | |
bee_install | |
( | |
echo "# creating 'libarchive.so.14' compatibility link"; sleep 3 | |
cd ${D}/usr/lib || cd ${D}/dev/shm/junk/lib | |
ln -sv libarchive.so.13.2.1 libarchive.so.14 | |
) | |
} |