Files
ports/core/patch/spkgbuild
2023-05-03 16:38:34 +02:00

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
}