summaryrefslogtreecommitdiff
path: root/elfutils-32/Pkgfile
blob: 7fbae967963cd80b8c69ff816e093ef878b2251e (plain)
    1 # Description: A collection of utilities to handle ELF objects.
    2 # URL: https://sourceware.org/elfutils/
    3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
    4 # Depends on: bzip2-32 xz-32 zlib-32 elfutils
    5 
    6 name=elfutils-32
    7 version=0.176
    8 release=1
    9 source=(https://sourceware.org/${name%-*}/ftp/$version/${name%-*}-$version.tar.bz2)
   10 
   11 build() {
   12 	cd ${name%-*}-$version
   13 
   14 	./configure \
   15 		--prefix=/usr \
   16 		--libdir=/usr/lib32 \
   17 		--program-prefix=eu- \
   18 		--disable-nls
   19 
   20 	make
   21 	make DESTDIR=$PKG install
   22 
   23 	rm -r $PKG/usr/{bin,include}
   24 }

Generated by cgit