compat-32/libunwind-32/Pkgfile

20 lines
631 B
Plaintext
Raw Normal View History

2021-10-16 08:32:17 +02:00
# Description: Portable and efficient API to determine the call-chain of a program
# URL: https://savannah.nongnu.org/projects/libunwind
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libunwind
name=libunwind-32
2021-12-12 04:19:30 +01:00
version=1.6.2
2021-10-16 08:32:17 +02:00
release=1
2021-12-12 04:19:30 +01:00
source=(https://download.savannah.gnu.org/releases/libunwind/libunwind-$version.tar.gz)
2021-10-16 08:32:17 +02:00
build() {
cd libunwind-$version
./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --disable-documentation
2021-10-16 08:32:17 +02:00
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
find $PKG/usr/include -type f ! -name libunwind-x86.h -delete
}