mirror of
https://git.freestone.net/cramer/pcapmirror.git
synced 2025-12-31 12:00:40 +01:00
Compare commits
4 Commits
0.6-rocky1
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| f63fbfb255 | |||
| 0f06c62949 | |||
| 255f9fef71 | |||
| a542f6ff7e |
17
.github/workflows/docker-ci.yml
vendored
Normal file
17
.github/workflows/docker-ci.yml
vendored
Normal 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 }}
|
||||
|
||||
4
Makefile
4
Makefile
@@ -1,7 +1,7 @@
|
||||
# Makefile for pcapmirror
|
||||
|
||||
# Compiler
|
||||
CC = gcc
|
||||
CC = cc
|
||||
|
||||
# Compiler flags
|
||||
CFLAGS = -Wall -g
|
||||
@@ -45,7 +45,7 @@ clean:
|
||||
# Install the executable
|
||||
install: $(TARGET)
|
||||
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
|
||||
|
||||
|
||||
|
||||
@@ -54,10 +54,10 @@ On the original download location you will also find several prebuilt packages.
|
||||
### Supported Operating Systems
|
||||
Source is tested to build and function on the following operating systems
|
||||
|
||||
* Debian Linux 12 + unstable (sid)
|
||||
* Rocky Linux 8 + 9
|
||||
* Debian Linux 12, 13 + unstable (sid)
|
||||
* Rocky Linux 8, 9, 10
|
||||
* PiOS 12 (bookworm)
|
||||
* OpenBSD 7.6
|
||||
* OpenBSD 7.6, 7.7
|
||||
* MacOS 15
|
||||
|
||||
Compile the program:
|
||||
|
||||
Reference in New Issue
Block a user