blob: aba3914ccf9de1e87c06d7a245afac20085bb09b (
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.6
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 }
|