opt/libunwind/Pkgfile

19 lines
516 B
Plaintext
Raw Normal View History

2021-10-16 08:32:38 +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:
# Optional: texlive
2021-10-16 08:32:38 +02:00
name=libunwind
2021-12-11 14:45:02 +01:00
version=1.6.2
2021-10-16 08:32:38 +02:00
release=1
source=(https://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --enable-documentation
2021-10-16 08:32:38 +02:00
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}