PKGBUILDs/extra/libunwind/PKGBUILD

46 lines
1.4 KiB
Bash
Raw Normal View History

2017-05-04 05:40:51 +00:00
# $Id$
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Sébastien Luttringer
2015-07-11 16:04:45 +00:00
# Contributor: Lawrence Lee <valheru@facticius.net>
# Contributor: Phillip Marvin <phillip.marvin@gmail.com>
# Contributor: keystone <phillip.marvin@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2015-10-01 00:21:39 +00:00
# - build v5 with system libatomic_ops
2015-07-11 16:04:45 +00:00
pkgname=libunwind
2017-06-16 18:02:45 +00:00
pkgver=1.2.1
2017-05-04 05:40:51 +00:00
pkgrel=1
2015-07-11 16:04:45 +00:00
pkgdesc='Portable and efficient C programming interface (API) to determine the call-chain of a program'
arch=('i686' 'x86_64')
url='http://www.nongnu.org/libunwind/'
license=('GPL')
depends=('glibc' 'xz')
2015-10-01 00:21:39 +00:00
depends_arm=('libatomic_ops')
2017-05-04 05:40:51 +00:00
makedepends=('texlive-core')
source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
2017-06-16 18:02:45 +00:00
sha512sums=('af7c280d2a963779a4a2711887618bc96383011e4e5d52e4085aa7fb351e55e357468f6ff85e66a216f1c6826538f498335a917a5970575c93be74c96316319b'
2017-05-04 05:40:51 +00:00
'SKIP')
validpgpkeys=('5C96BDEAF5F47FB02BD4F6B965D98560914F3F48' # Arun Sharma
'1675C8DA2EF907FB116EB709EC52B396E6874AF2') # Dave Watson
2015-07-11 16:04:45 +00:00
build() {
cd $pkgname-$pkgver
2015-10-01 00:21:39 +00:00
[[ $CARCH == "arm" ]] && LDFLAGS+=" -latomic_ops" && CFLAGS+=" -DAO_USE_PTHREAD_DEFS=1"
2017-05-04 05:40:51 +00:00
./configure --prefix=/usr
2015-07-11 16:04:45 +00:00
make
}
check() {
cd $pkgname-$pkgver
# This function is ``supposed'' to fail. Upstream know, but haven't fixed it.
2017-05-04 05:40:51 +00:00
make check || :
2015-07-11 16:04:45 +00:00
}
package() {
cd $pkgname-$pkgver
2017-05-04 05:40:51 +00:00
make DESTDIR="$pkgdir" install
2015-07-11 16:04:45 +00:00
}
# vim:set ts=2 sw=2 et: