diff options
author | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
commit | dee9f17b595ea903a982d31d1124b302bb17e2ff (patch) | |
tree | 295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/libunwind | |
parent | 380530d02a5449fdef97b63b394a6743c3de0092 (diff) |
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/libunwind')
-rw-r--r-- | community/libunwind/PKGBUILD | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/community/libunwind/PKGBUILD b/community/libunwind/PKGBUILD deleted file mode 100644 index 57cc71112..000000000 --- a/community/libunwind/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $id$ -# Maintainer: Sébastien Luttringer <seblu@archlinux.org> -# Contributor: Lawrence Lee <valheru@facticius.net> -# Contributor: Phillip Marvin <phillip.marvin@gmail.com> -# Contributor: keystone <phillip.marvin@gmail.com> - -pkgname=libunwind -pkgver=1.1 -pkgrel=1 -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') -options=(!libtool) -source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('fb4ea2f6fbbe45bf032cd36e586883ce') - -build() { - cd $pkgname-$pkgver - ./configure CFLAGS="$CFLAGS -U_FORTIFY_SOURCE" --prefix=/usr - make -} - -check() { - cd $pkgname-$pkgver - # This function is ``supposed'' to fail. Upstream know, but haven't fixed it. - make check || return 0 -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir/" install -} - -# vim:set ts=2 sw=2 et: |