diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-03 19:44:19 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-03 19:44:19 -0300 |
commit | 5f03f36a1327a1c1ade065b89ec2ad873b708a0d (patch) | |
tree | 0bbfab5010c0318a1faa46d5897fd831e0e4d60c /extra/strace | |
parent | 1ac43f3f1d47a56bbc1564ae7d2fd0869f345b6c (diff) | |
parent | 8eed59114cbcf729b65f87d3f73530f6c8363d20 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/libdvdnav/PKGBUILD
extra/libguess/PKGBUILD
extra/libmowgli/PKGBUILD
extra/xchm/PKGBUILD
libre/linux-libre/PKGBUILD
Diffstat (limited to 'extra/strace')
-rw-r--r-- | extra/strace/PKGBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/extra/strace/PKGBUILD b/extra/strace/PKGBUILD index 44e774b28..3ccdc693e 100644 --- a/extra/strace/PKGBUILD +++ b/extra/strace/PKGBUILD @@ -1,27 +1,28 @@ -# $Id: PKGBUILD 115123 2011-03-17 01:51:59Z giovanni $ +# $Id: PKGBUILD 143986 2011-12-01 15:13:39Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=strace pkgver=4.6 -pkgrel=1 +pkgrel=2 pkgdesc="A useful diagnositic, instructional, and debugging tool" arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/strace/" license=('custom') depends=('perl') -source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.xz) +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.xz") md5sums=('e537b2b1afeec70c0e6e27a0d0fd671e') build() { cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr make } package() { cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}/" install - install -Dm644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE + make DESTDIR="${pkgdir}/" install + install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } |