CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
tar: updated to 1.30
[crossrootfs.git] / elfutils / Pkgfile
CommitLineData
7628492a
VM
1# Description: A collection of utilities to handle ELF objects.
2# URL: https://sourceware.org/elfutils/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Depends on: bzip2 xz zlib
6
7name=elfutils
8version=0.169
9release=1
10source=(https://sourceware.org/$name/ftp/$version/$name-$version.tar.bz2)
11
12build() {
13 cd $name-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET\
17 --prefix=/usr \
18 --program-prefix=eu- \
19 --disable-nls
20
21 make
22 make DESTDIR=$PKG install
23}