contrib/gpp/Pkgfile

20 lines
401 B
Plaintext
Raw Normal View History

2014-12-04 10:15:41 +01:00
# Description: A general-purpose preprocessor with customizable syntax.
# URL: http://en.nothingisreal.com/wiki/GPP
# Maintainer: Danny Rawlins, crux at romster dot me
name=gpp
2020-08-06 12:38:16 +02:00
version=2.27
2014-12-04 10:15:41 +01:00
release=1
2019-12-09 13:42:44 +01:00
source=(https://files.nothingisreal.com/software/$name/$name-$version.tar.bz2)
2014-12-04 10:15:41 +01:00
build() {
cd $name-$version
2019-12-09 13:42:44 +01:00
./configure --prefix=/usr
2014-12-04 10:15:41 +01:00
make
make DESTDIR=$PKG install
2019-12-09 13:42:44 +01:00
rm -r $PKG/usr/share/doc
2014-12-04 10:15:41 +01:00
}