1
0
dwelling-radio/Makefile

64 lines
2.2 KiB
Makefile
Raw Normal View History

TARGET := dwelling-radio
2022-03-08 01:17:24 +04:00
SYSDDIR_ := ${shell pkg-config systemd --variable=systemdsystemunitdir}
SYSDDIR := ${SYSDDIR_:/%=%}
2022-03-08 01:17:24 +04:00
DESTDIR ?=
PREFIX ?= /usr/local
2022-03-08 01:17:24 +04:00
VERSION ?= 24.20.0
2023-05-02 17:38:10 +04:00
GOFLAGS := -buildmode=pie -modcacherw -mod=readonly -trimpath
LDFLAGS := -ldflags "-linkmode=external -extldflags \"${LDFLAGS}\" -s -w -X main.version=${VERSION}" -tags osusergo,netgo
2022-03-08 01:17:24 +04:00
2023-09-10 18:16:45 +04:00
.PHONY: run install uninstall clean
2022-03-08 01:17:24 +04:00
${TARGET}: web/*_templ.go
go build -o bin/$@ ${LDFLAGS} ${GOFLAGS} cmd/$@/main.go
2022-03-08 01:17:24 +04:00
web/*_templ.go: web/*.templ
ifeq (,$(wildcard $(shell go env GOPATH)/bin/templ))
go install github.com/a-h/templ/cmd/templ@latest
endif
$(shell go env GOPATH)/bin/templ generate
run: | ${TARGET}
bin/dwelling-radio -listen 127.0.0.1:18322 \
-playlist /mnt/data/appdata/radio/playlists/all-rand \
-fallback-song /mnt/data/appdata/radio/fallback.ogg \
-db test.db3
2022-03-08 01:17:24 +04:00
install:
install -Dm 0755 bin/${TARGET} ${DESTDIR}${PREFIX}/bin/${TARGET}
install -Dm 0755 tools/radioctl ${DESTDIR}${PREFIX}/bin/${TARGET}ctl
install -Dm 0755 tools/radio-fetch ${DESTDIR}${PREFIX}/bin/${TARGET}-fetch
2023-10-07 18:03:12 +04:00
# install -Dm 0644 configs/radio.liq ${DESTDIR}/etc/dwelling/radio.liq
# install -Dm 0644 configs/radio.vars.liq ${DESTDIR}/etc/dwelling/radio.vars.liq
2023-09-21 02:02:13 +04:00
install -Dm 0644 configs/ezstream.xml ${DESTDIR}/etc/dwelling/ezstream.xml
2023-03-13 04:38:03 +04:00
install -Dm 0644 configs/logrotate ${DESTDIR}/etc/logrotate.d/${TARGET}
install -Dm 0644 configs/override.icecast.service ${DESTDIR}/etc/systemd/system/icecast.service.override.d/override.conf
2022-03-08 01:17:24 +04:00
install -Dm 0644 init/radio.service ${DESTDIR}/${SYSDDIR}/${TARGET}.service
2023-10-07 18:03:12 +04:00
# install -Dm 0644 init/liquidsoap.service ${DESTDIR}/${SYSDDIR}/${TARGET}-liquidsoap.service
2023-09-21 03:24:46 +04:00
install -Dm 0644 init/ezstream.service ${DESTDIR}/${SYSDDIR}/${TARGET}-ezstream.service
2022-03-08 01:17:24 +04:00
uninstall:
rm ${DESTDIR}${PREFIX}/bin/${TARGET}
rm ${DESTDIR}${PREFIX}/bin/${TARGET}ctl
rm ${DESTDIR}${PREFIX}/bin/${TARGET}-fetch
2023-10-07 18:03:12 +04:00
# rm ${DESTDIR}/etc/dwelling/radio.liq
2023-09-21 02:02:13 +04:00
rm ${DESTDIR}/etc/dwelling/ezstream.xml
2023-03-13 04:38:03 +04:00
rm ${DESTDIR}/etc/logrotate.d/${TARGET}
rm ${DESTDIR}/etc/systemd/system/icecast.service.override.d/override.conf
2022-03-08 01:17:24 +04:00
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service
2023-10-07 18:03:12 +04:00
# rm ${DESTDIR}${SYSDDIR}/${TARGET}-liquidsoap.service
2023-09-21 02:02:13 +04:00
rm ${DESTDIR}${SYSDDIR}/${TARGET}-ezstream.service
clean:
rm -f web/*.jade.go
go clean