mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
16 lines
334 B
Plaintext
Executable File
16 lines
334 B
Plaintext
Executable File
# description : A program for modifying or creating files by applying a “patch” file typically created by the diff program
|
|
# 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
|
|
}
|