musl: symlinks added for compatibility

master
Luka Vandervelden 2019-08-26 18:03:31 +02:00
parent 8ab9c05983
commit a53f4f7e5e
1 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
name: musl
version: 1.1.23
release: 2
release: 3
sources: https://www.musl-libc.org/releases/musl-%{version}.tar.gz
options:
- configure: --prefix=/usr --libdir=/lib --syslibdir=/lib --enable-shared --enable-static
@ -9,7 +9,7 @@ options:
cd %{name}-%{version}
make DESTDIR="%{pkg}" install
# FIXME: Thisll have to eventually be more automated.
# FIXME: That path has to be edited on other architectures.
mkdir -p %{pkg}/etc
@ -20,3 +20,8 @@ options:
echo /usr/local/lib
} > %{pkg}/etc/ld-musl-x86_64.path
for lib in libm libpthread librt libdl; do
ln -s /lib/libc.a "%{pkg}/lib/${lib}.a"
ln -s /lib/libc.so "%{pkg}/lib/${lib}.so"
done