blob: 5471152d08842aa98d32ca03459a6ad7c02bfbf5 (
plain)
1 # Description: ACMEv2 client written in plain C with minimal dependencies
2 # URL: https://github.com/ndilieto/uacme
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: gnutls asciidoc
5
6 name=uacme
7 version=1.7.5
8 release=1
9 source=(https://github.com/ndilieto/uacme/archive/v${version}.tar.gz)
10
11 build() {
12 cd ${name}-${version}
13 autoreconf -vf
14
15 sed -i \
16 -e '/AX_CHECK_COMPILE_FLAG/d' \
17 -e '/-fno-strict-aliasing/d' \
18 configure
19
20 ./configure --prefix=/usr
21
22 make
23 make DESTDIR=${PKG} install
24 rm -r "${PKG}/usr/share/doc"
25 }
|