mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
655 B
Bash
23 lines
655 B
Bash
# $Id: PKGBUILD 50909 2009-09-02 23:49:37Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Matthias-Christian Ott <matthias.christian.at.tiscali.de>
|
|
|
|
pkgname=diffstat
|
|
pkgver=1.49
|
|
pkgrel=1
|
|
pkgdesc="Display a histogram of diff changes"
|
|
arch=('i686' 'x86_64')
|
|
url="http://invisible-island.net/diffstat"
|
|
depends=('glibc')
|
|
license=('GPL')
|
|
source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver}.tgz)
|
|
md5sums=('63fa6d90f137f5d839e94aa93882db98')
|
|
|
|
build () {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
make || return 1
|
|
make DESTDIR=$pkgdir/ install
|
|
}
|
|
|