mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
7ea58d09f6
Update doc/PKGBUILD-example.txt with several changes from the official Arch Linux package for patch-2.7.1-1, including other changes shown below: -- replaces spaces with tabs in functions -- replaces 'make prefix=' with 'make DESTDIR=' -- improves quoting of the "cd" command in functions Signed-off-by: Jason St. John <jstjohn@purdue.edu> Signed-off-by: Allan McRae <allan@archlinux.org>
28 lines
632 B
Plaintext
28 lines
632 B
Plaintext
# Maintainer: Joe User <joe.user@example.com>
|
|
|
|
pkgname=patch
|
|
pkgver=2.7.1
|
|
pkgrel=1
|
|
pkgdesc="A utility to apply patch files to original sources"
|
|
arch=('i686' 'x86_64')
|
|
url="https://www.gnu.org/software/patch/patch.html"
|
|
license=('GPL')
|
|
groups=('base-devel')
|
|
depends=('glibc')
|
|
makedepends=('ed')
|
|
optdepends=('ed: for "patch -e" functionality')
|
|
source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
md5sums=('e9ae5393426d3ad783a300a338c09b72'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|