diff --git a/extra/strace/PKGBUILD b/extra/strace/PKGBUILD deleted file mode 100644 index 4e4890fb7..000000000 --- a/extra/strace/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: Giovanni Scafora <giovanni@archlinux.org> -# Contributor: Tom Newsom <Jeepster@gmx.co.uk> - -# ALARM: Kevin Mihelich <kevin@archlinuxarm.org> -# - configure with --enable-mpers=check to fix AArch64 build - -pkgname=strace -pkgver=5.10 -pkgrel=1 -pkgdesc='A diagnostic, debugging and instructional userspace tracer' -arch=(x86_64) -url='https://strace.io/' -license=(BSD) -depends=(perl libunwind) -source=(https://github.com/strace/strace/releases/download/v$pkgver/strace-$pkgver.tar.xz{,.asc}) -sha1sums=('8b5ced312f379806406a0ee6551fbe373c55e738' - 'SKIP') -validpgpkeys=('296D6F29A020808E8717A8842DB5BD89A340AEB7') # Dmitry V. Levin <ldv@altlinux.org> - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr \ - --with-libunwind --enable-mpers=check - make -} - -check() { - # tests do not work in chroot environment. TODO: fixit. - # make -C $pkgname-$pkgver check - true -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -}