1
0
forked from ports/contrib

22 lines
437 B
Plaintext
Raw Normal View History

# Description: A collection of programs that operate on patch files.
# URL: http://cyberelk.net/tim/software/patchutils/
2023-08-13 09:28:18 +02:00
# Maintainer: unmaintained
name=patchutils
2020-07-21 23:05:40 +10:00
version=0.4.2
release=1
2020-07-21 23:05:40 +10:00
source=(https://github.com/twaugh/$name/archive/$version/$name-$version.tar.gz)
build() {
2023-08-13 09:28:18 +02:00
cd $name-$version
2008-07-03 01:35:52 +10:00
2023-08-13 09:28:18 +02:00
autoreconf -i
2020-07-21 23:05:40 +10:00
2023-08-13 09:28:18 +02:00
./configure \
--prefix=/usr \
--mandir=/usr/share/man
2008-07-03 01:35:52 +10:00
2023-08-13 09:28:18 +02:00
make CFLAGS="$CFLAGS"
make DESTDIR=$PKG install
}