23 lines
490 B
Plaintext
Raw Normal View History

2014-02-17 02:38:35 +11:00
# Description: A collection of utilities to handle ELF objects.
2017-05-09 23:29:22 +10:00
# URL: https://sourceware.org/elfutils/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: bzip2 xz zlib
2014-02-17 02:38:35 +11:00
2017-05-09 23:29:22 +10:00
name=elfutils
version=0.169
2014-02-17 02:38:35 +11:00
release=1
2017-05-09 23:29:22 +10:00
source=(https://sourceware.org/$name/ftp/$version/$name-$version.tar.bz2)
2014-02-17 02:38:35 +11:00
build() {
2017-05-09 23:29:22 +10:00
cd $name-$version
2014-02-17 02:38:35 +11:00
./configure \
--prefix=/usr \
2014-07-02 18:50:44 +10:00
--program-prefix=eu- \
--disable-nls
2014-02-17 02:38:35 +11:00
make
make DESTDIR=$PKG install
}