libfyaml-sys 0.2.9+fy0.8.0

Rust binding for libfyaml
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ARG IMAGE=centos
FROM ${IMAGE}
# install build dependencies
RUN yum update -y
RUN yum install -y gcc autoconf automake libtool git make pkgconf
# configure argument
ARG CONFIG_ARGS
ENV CONFIG_ARGS=${CONFIG_ARGS:-"--enable-debug --prefix=/usr"}
COPY . /build
WORKDIR /build
# do a maintainer clean if the directory was unclean (it can fail)
RUN make maintainer-clean >/dev/null 2>&1|| true
RUN ./bootstrap.sh 2>&1
RUN ./configure 2>&1 ${CONFIG_ARGS}
RUN make
# NOTE: no check, since alpine it's only a build test distro