1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 11:37:45 +00:00

Ports: Add aclock port

This commit is contained in:
Seal Sealy 2022-08-22 23:37:52 +03:00 committed by Linus Groh
parent f3cec9de75
commit ffe9a862f0
2 changed files with 15 additions and 0 deletions

14
Ports/aclock/package.sh Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='aclock'
version='2.3'
files="https://github.com/tenox7/aclock/raw/f9668617eac365fe8b5416cfbd801b727d8a3746/sources/aclock-unix-curses.c aclock-${version}.c 2b098996409c4740f492fb8fd5a63cb5e3e15283c2f7e3f06c75d6a9ad916669"
auth_type='sha256'
depends=("ncurses")
build() {
run_nocd ${CC} aclock-${version}.c -o aclock -lcurses -lm
}
install() {
cp aclock "$DESTDIR/usr/local/bin"
}