alac/.drone.yml
DataHoarder 0f8ce49da1
All checks were successful
continuous-integration/drone/push Build is passing
Add build dependencies
2022-04-21 11:03:36 +02:00

18 lines
365 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: debian:bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
- DEBIAN_FRONTEND=noninteractive apt install -y g++ gcc autoconf automake make libtool-bin
- autoreconf -fi
- ./configure --prefix /usr
- make -j$(nproc)
- make install
...