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>
pkgname=elfutils
pkgver=0.152
pkgver=0.154
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')
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')
source=("https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2")
md5sums=('e5b26ceaee67db40e742f13052087354')
build()
{
cd ${srcdir}/${pkgname}-${pkgver}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --program-prefix="eu-"
make
echo "<<< STARTING TESTS >>>"
make check
echo "<<< ENDING TESTS >>>"
}
package()
{
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make install DESTDIR="${pkgdir}"
}
# vim:set ts=2 sw=2 et: