mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 19:44:47 +00:00
19 lines
491 B
Plaintext
Executable File
19 lines
491 B
Plaintext
Executable File
# description : A program for modifying or creating files by applying a “patch” file typically created by the diff program
|
|
# homepage : https://www.gnu.org/software/patch/patch.html
|
|
# maintainer : emmett1, emmett1.2miligrams at gmail.com
|
|
# depends : attr
|
|
|
|
name=patch
|
|
version=2.7.6
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
md5sum=(78ad9937e4caadcba1526ef1853730d5)
|