summaryrefslogtreecommitdiff
path: root/extra/elfutils
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-05-07 21:27:26 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-05-07 21:27:26 -0300
commit0363d5073b581f7d98910a93440d70b98ba29b53 (patch)
treea0ed8bf924f7a5c0b35d499edb45954cc215509c /extra/elfutils
parent3a0008bd8a3e6f4f21181c1fadc17c3da3108907 (diff)
parentb0145a13655cdf02f228f07b376e58a825e28b78 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/ude/PKGBUILD
Diffstat (limited to 'extra/elfutils')
-rw-r--r--extra/elfutils/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/elfutils/PKGBUILD b/extra/elfutils/PKGBUILD
new file mode 100644
index 000000000..1f825930a
--- /dev/null
+++ b/extra/elfutils/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 114401 2011-03-13 10:05:11Z allan $
+# Maintainer: Allan McRae <allan@archlinux.org>
+# Contributor: Andrej Gelenberg <andrej.gelenberg@udo.edu>
+
+pkgname=elfutils
+pkgver=0.152
+pkgrel=1
+pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information"
+arch=('i686' 'x86_64' 'mips64el')
+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
+}