mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
711 B
Bash
22 lines
711 B
Bash
# $Id: PKGBUILD 34545 2009-04-10 03:20:19Z eric $
|
|
# Maintainer : Aaron Griffin <aaron@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=ltrace
|
|
pkgver=0.5.1
|
|
pkgrel=1
|
|
pkgdesc="ltrace is a debugging program which runs a specified command until it exits"
|
|
arch=('i686' 'x86_64')
|
|
url="http://packages.debian.org/squeeze/ltrace"
|
|
license=('GPL')
|
|
depends=('glibc' 'libelf')
|
|
backup=('etc/ltrace.conf')
|
|
source=(http://ftp.debian.org/debian/pool/main/l/ltrace/${pkgname}_${pkgver}.orig.tar.gz)
|
|
md5sums=('7dae92a19979e65bbf8ec50c0ed54d9a')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|