1
0
Fork 0

Adding upstream version 1.9.14.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 13:10:21 +01:00
parent ddf4b25f8f
commit 49fcf7364a
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
88 changed files with 62468 additions and 0 deletions

19
.github/workflows/ci.yaml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Continuous Integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: reconfigure
run: autoreconf -fi
- name: configure
run: ./configure --prefix="/usr"
- name: make
run: make
- name: make check
run: make check
- name: make install
run: sudo make install