blob: a1c94c71a542226f5c43de7e350f7ac4ac845c5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
extraction:
cpp:
prepare:
packages:
- build-essential
- automake
- autoconf
- libtool
- pkg-config
- libpcap-dev
- libldns-dev
- libyaml-perl
- zlib1g-dev
- libssl-dev
after_prepare:
- git clone https://github.com/DNS-OARC/cryptopANT.git
- cd cryptopANT
- ./autogen.sh
- ./configure --prefix="$PWD/../root"
- make
- make install
- cd ..
configure:
command:
- ./autogen.sh
- ./configure --with-extra-cflags="-I $PWD/root/include" --with-extra-ldflags="-L$PWD/root/lib"
|