mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-11 03:54:59 -05:00
9cd344fb0d
The Arch web site now redirects to https links for all subdomains, so it makes sense to use these links in the docs for pacman. Links were changed to use https for a couple other sites that support it as well, such as gnu.org and kernel.org. Signed-off-by: Jason St. John <jstjohn@purdue.edu> Signed-off-by: Allan McRae <allan@archlinux.org>
25 lines
552 B
Plaintext
25 lines
552 B
Plaintext
# Maintainer: Joe User <joe.user@example.com>
|
|
|
|
pkgname=patch
|
|
pkgver=2.5.4
|
|
pkgrel=3
|
|
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' 'ed')
|
|
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('ee5ae84d115f051d87fcaaef3b4ae782')
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make prefix="$pkgdir"/usr install
|
|
}
|