17 lines
489 B
Text
Executable file
17 lines
489 B
Text
Executable file
# Description: A program for modifying or creating files by applying a “patch” file typically created by the diff program
|
|
# URL: https://www.gnu.org/software/patch/patch.html
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on: 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
|
|
}
|