You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
527 B
23 lines
527 B
# potcasse – podcast self hosting made easy
|
|
# See the LICENSE file for copyright and license details.
|
|
.POSIX:
|
|
|
|
VERSION = 0.1
|
|
|
|
BIN = potcasse
|
|
PREFIX = /usr
|
|
BINDIR = ${PREFIX}/bin
|
|
|
|
all:
|
|
|
|
install:
|
|
@echo installing executable to "${DESTDIR}${PREFIX}/bin"
|
|
@mkdir -p "${DESTDIR}${BINDIR}"
|
|
@cp -f "${BIN}" "${DESTDIR}${BINDIR}/${BIN}"
|
|
@chmod 555 "${DESTDIR}${BINDIR}/${BIN}"
|
|
|
|
uninstall:
|
|
@echo removing executable file from "${DESTDIR}${PREFIX}/bin"
|
|
@rm -f "${DESTDIR}${BINDIR}/${BIN}"
|
|
|
|
.PHONY: all install uninstall clean
|
|
|