Updating elfutils to 0.154.

This commit is contained in:
Daniele 2012-08-14 11:55:32 +02:00
parent 2fe1370281
commit 31f8cda578

View File

@ -5,32 +5,33 @@
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org> # maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname=elfutils pkgname=elfutils
pkgver=0.152 pkgver=0.154
pkgrel=1 pkgrel=1
pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information" pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information."
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="https://fedorahosted.org/elfutils/" url="https://fedorahosted.org/elfutils/"
license=('GPL2') license=('GPL2')
depends=('glibc') depends=('glibc')
#optdepends=('zlib' 'xz' 'bzip2')
provides=('libelf') provides=('libelf')
replaces=('libelf') replaces=('libelf')
conflicts=('libelf') conflicts=('libelf')
source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2) source=("https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2")
md5sums=('39739ed58a0fa1862eff8735f111fe5c') md5sums=('e5b26ceaee67db40e742f13052087354')
build() build() {
{ cd "${srcdir}/${pkgname}-${pkgver}"
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --program-prefix="eu-" ./configure --prefix=/usr --program-prefix="eu-"
make make
echo "<<< STARTING TESTS >>>"
make check
echo "<<< ENDING TESTS >>>"
} }
package() check() {
{ cd "${srcdir}/${pkgname}-${pkgver}"
cd ${srcdir}/${pkgname}-${pkgver} make check
make DESTDIR=${pkgdir} install
} }
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make install DESTDIR="${pkgdir}"
}
# vim:set ts=2 sw=2 et: