GNU Libtool 2.2.4

This commit is contained in:
Andrius Štikonas 2021-03-25 19:14:34 +00:00
parent 28779bc9ba
commit a63a01c56b
15 changed files with 67 additions and 53 deletions

View file

@ -0,0 +1,25 @@
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
./bootstrap
}
src_configure() {
CC=tcc ./configure \
--prefix="${PREFIX}" \
--libdir="${PREFIX}/lib/musl" \
--disable-shared \
--host=i386-unknown-linux \
--target=i386-unknown-linux \
--build=i386-unknown-linux
}
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true
}