diff options
Diffstat (limited to '.lgtm.yml')
-rw-r--r-- | .lgtm.yml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.lgtm.yml b/.lgtm.yml new file mode 100644 index 0000000..03af992 --- /dev/null +++ b/.lgtm.yml @@ -0,0 +1,36 @@ +extraction: + cpp: + prepare: + packages: + - build-essential + - automake + - autoconf + - libtool + - pkg-config + - libpcap-dev + - libgeoip-dev + - libmaxminddb-dev + - protobuf-c-compiler + - libprotobuf-c-dev + - libuv1-dev + after_prepare: + - git clone https://github.com/DNS-OARC/tinyframe.git + - cd tinyframe + - ./autogen.sh + - ./configure --prefix="$PWD/../root" + - make + - make install + - cd .. + - export PKG_CONFIG_PATH="$PWD/root/lib/pkgconfig" + - git clone https://github.com/DNS-OARC/dnswire.git + - cd dnswire + - git submodule update --init + - ./autogen.sh + - ./configure --prefix="$PWD/../root" --disable-examples + - make + - make install + - cd .. + configure: + command: + - ./autogen.sh + - ./configure --enable-dnstap |