diff options
Diffstat (limited to 'core/diffutils/PKGBUILD')
-rw-r--r-- | core/diffutils/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/core/diffutils/PKGBUILD b/core/diffutils/PKGBUILD new file mode 100644 index 000000000..a5cec46b3 --- /dev/null +++ b/core/diffutils/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 102649 2010-12-09 13:50:53Z stephane $ +# Maintainer: Allan McRae <allan@archlinux.org> +# Contributor: Andreas Radke <andyrtr@archlinux.org> + +pkgname=diffutils +pkgver=3.0 +pkgrel=2 +pkgdesc="Utility programs used for creating patch files" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/diffutils" +license=('GPL3') +groups=('base') +depends=('glibc' 'sh') +install=diffutils.install +source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz) +md5sums=('7624eb7e6b53ea3ce38958a092d2216e') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |