# $Id: PKGBUILD 149338 2012-02-06 20:53:31Z stephane $ # Maintainer: Allan McRae # Contributor: Andrej Gelenberg pkgname=elfutils pkgver=0.152 pkgrel=2 pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information" arch=('i686' 'x86_64') url="https://fedorahosted.org/elfutils/" license=('GPL2') depends=('glibc') #optdepends=('zlib' 'xz' 'bzip2') provides=('libelf') replaces=('libelf') conflicts=('libelf') source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2) md5sums=('39739ed58a0fa1862eff8735f111fe5c') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --program-prefix="eu-" make make check } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }