mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 08:12:06 +01:00
32 lines
657 B
Plaintext
32 lines
657 B
Plaintext
# Maintainer: Leonardo Arena <rnalrd@gmail.com>
|
|
pkgname=diffutils
|
|
pkgver=3.0
|
|
pkgrel=0
|
|
pkgdesc="Show differences among files"
|
|
subpackages="$pkgname-doc"
|
|
url="http://www.gnu.org/software/diffutils/"
|
|
arch="x86 x86_64"
|
|
license="GPL2"
|
|
depends=""
|
|
makedepends=""
|
|
install="$pkgname.post-deinstall"
|
|
source="http://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir=$srcdir/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make install DESTDIR=$pkgdir
|
|
}
|
|
|
|
md5sums="684aaba1baab743a2a90e52162ff07da diffutils-3.0.tar.gz"
|