eth0s/ports/core/patch/Pkgfile
2019-11-10 23:58:56 +08:00

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
}