18 lines
481 B
Text
18 lines
481 B
Text
![]() |
# 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.2miligrams at gmail.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
|
||
|
}
|