build: update configure.ac using autoupdate-2.69 from ubuntu20.04 #156
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BSD | |
on: [push, pull_request] | |
jobs: | |
freebsd: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
run: | | |
pkg update | |
pkg install -y autoconf automake bison flex pkgconf | |
./autogen.sh | |
./configure | |
make | |
make dist-xz | |
make install |