2021-10-16 17:32:38 +11:00
|
|
|
# Description: Portable and efficient API to determine the call-chain of a program
|
|
|
|
# URL: https://savannah.nongnu.org/projects/libunwind
|
2023-07-07 20:01:13 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2021-10-16 17:24:18 +02:00
|
|
|
# Depends on:
|
|
|
|
# Optional: texlive
|
2021-10-16 17:32:38 +11:00
|
|
|
|
|
|
|
name=libunwind
|
2021-12-11 14:45:02 +01:00
|
|
|
version=1.6.2
|
2021-10-16 17:32:38 +11:00
|
|
|
release=1
|
|
|
|
source=(https://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
2023-07-07 20:01:13 +02:00
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-documentation
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2021-10-16 17:32:38 +11:00
|
|
|
}
|