Date: Friday, November 9, 2018 @ 21:12:32
Author: foutrelis
Revision: 338532
archrelease: copy trunk to staging-x86_64
Added:
libunwind/repos/staging-x86_64/
libunwind/repos/staging-x86_64/PKGBUILD
(from rev 338531, libunwind/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: libunwind/repos/staging-x86_64/PKGBUILD (from rev 338531,
libunwind/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-11-09 21:12:32 UTC (rev 338532)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Sébastien Luttringer
+# Contributor: Lawrence Lee <[email protected]>
+# Contributor: Phillip Marvin <[email protected]>
+# Contributor: keystone <[email protected]>
+
+pkgname=libunwind
+pkgver=1.2.1
+pkgrel=2
+pkgdesc='Portable and efficient C programming interface (API) to determine the
call-chain of a program'
+arch=('x86_64')
+url='http://www.nongnu.org/libunwind/'
+license=('GPL')
+depends=('glibc' 'xz')
+makedepends=('texlive-core')
+source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+sha512sums=('af7c280d2a963779a4a2711887618bc96383011e4e5d52e4085aa7fb351e55e357468f6ff85e66a216f1c6826538f498335a917a5970575c93be74c96316319b'
+ 'SKIP')
+validpgpkeys=('5C96BDEAF5F47FB02BD4F6B965D98560914F3F48' # Arun Sharma
+ '1675C8DA2EF907FB116EB709EC52B396E6874AF2') # Dave Watson
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ # This function is ``supposed'' to fail. Upstream know, but haven't fixed it.
+ make check || :
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: