Compare commits

...

4 Commits

Author SHA1 Message Date
f63fbfb255 try again
Some checks failed
/ build-debs (push) Failing after 34s
2025-10-31 21:57:32 +01:00
0f06c62949 x
Some checks failed
/ build-debs (push) Failing after 44s
2025-10-31 21:50:09 +01:00
255f9fef71 github action test to build package 2025-10-31 21:31:01 +01:00
a542f6ff7e Strip on install, change compiler to cc so no change on BSD is needed 2025-10-30 23:00:02 +01:00
3 changed files with 22 additions and 5 deletions

17
.github/workflows/docker-ci.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
on: push
jobs:
build-debs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: singingwolfboy/build-dpkg-buster@v1
id: build
with:
args: --unsigned-source --unsigned-changes
- uses: actions/upload-artifact@v1
with:
name: ${{ steps.build.outputs.filename }}
path: ${{ steps.build.outputs.filename }}

View File

@@ -1,7 +1,7 @@
# Makefile for pcapmirror # Makefile for pcapmirror
# Compiler # Compiler
CC = gcc CC = cc
# Compiler flags # Compiler flags
CFLAGS = -Wall -g CFLAGS = -Wall -g
@@ -45,7 +45,7 @@ clean:
# Install the executable # Install the executable
install: $(TARGET) install: $(TARGET)
mkdir -p $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/bin
install -D $(TARGET) $(DESTDIR)$(PREFIX)/bin/$(TARGET) install -s -D $(TARGET) $(DESTDIR)$(PREFIX)/bin/$(TARGET)
install -D $(TARGET).8 $(DESTDIR)$(PREFIX)/share/man/man8/$(TARGET).8 install -D $(TARGET).8 $(DESTDIR)$(PREFIX)/share/man/man8/$(TARGET).8

View File

@@ -54,10 +54,10 @@ On the original download location you will also find several prebuilt packages.
### Supported Operating Systems ### Supported Operating Systems
Source is tested to build and function on the following operating systems Source is tested to build and function on the following operating systems
* Debian Linux 12 + unstable (sid) * Debian Linux 12, 13 + unstable (sid)
* Rocky Linux 8 + 9 * Rocky Linux 8, 9, 10
* PiOS 12 (bookworm) * PiOS 12 (bookworm)
* OpenBSD 7.6 * OpenBSD 7.6, 7.7
* MacOS 15 * MacOS 15
Compile the program: Compile the program: