blob: 71471a3cda01f2848aadaf700faa8851a97f9415 (
plain)
1 # Description: A collection of utilities to handle ELF objects.
2 # URL: https://www.openhub.net/p/elfutils
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Tilman Sauerbeck, tilman at crux dot nu
5 # Depends on: bzip2 xz zlib
6
7 name=elfutils
8 version=0.168
9 release=1
10 source=(https://sourceware.org/$name/ftp/$version/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --program-prefix=eu- \
18 --disable-nls
19
20 make
21 make DESTDIR=$PKG install
22 }
|