blob: 02b053b7b85e2f6063e41d519b7380354d1cd02a (
plain)
1 # Description: A tool to write command line option parsing code for C programs.
2 # Maintainer: Aaron Ball, nullspoon at oper dot io
3 # URL: https://www.gnu.org/software/gengetopt/gengetopt.html
4 # Depends on: texinfo
5 name=gengetopt
6 version=2.23
7 release=1
8 source=(https://ftp.gnu.org/gnu/${name}/${name}-${version}.tar.xz)
9
10 build() {
11 cd ${name}-${version}
12 ./configure --prefix=/usr
13 make
14 make DESTDIR=${PKG} install
15 rm -r "${PKG:?}/usr/share/doc"
16 }
|