22 lines
453 B
Plaintext
Raw Normal View History

# Description: A collection of programs that operate on patch files.
# URL: http://cyberelk.net/tim/software/patchutils/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
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() {
2009-01-24 07:50:02 +11:00
cd $name-$version
2008-07-03 01:35:52 +10:00
2020-07-21 23:05:40 +10:00
autoreconf -i
2008-07-03 01:35:52 +10:00
./configure \
--prefix=/usr \
--mandir=/usr/share/man
2008-07-03 01:35:52 +10:00
make CFLAGS="$CFLAGS"
make DESTDIR=$PKG install
}