mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
114 lines
3.4 KiB
Makefile
114 lines
3.4 KiB
Makefile
# Copyright (c) 2015 Franco Fichtner <franco@opnsense.org>
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
# SUCH DAMAGE.
|
|
|
|
all: check
|
|
|
|
PLUGIN_DESC!= git rev-list HEAD --max-count=1 | cut -c1-9
|
|
PLUGIN_SCRIPTS= +PRE_INSTALL +POST_INSTALL \
|
|
+PRE_DEINSTALL +POST_DEINSTALL
|
|
PLUGIN_PREFIX= os-
|
|
|
|
LOCALBASE?= /usr/local
|
|
PKG!= which pkg || echo true
|
|
|
|
PLUGIN_REQUIRES= PLUGIN_NAME PLUGIN_VERSION PLUGIN_COMMENT \
|
|
PLUGIN_MAINTAINER
|
|
|
|
check:
|
|
.for PLUGIN_REQUIRE in ${PLUGIN_REQUIRES}
|
|
. if "${${PLUGIN_REQUIRE}}" == ""
|
|
. error "${PLUGIN_REQUIRE} not set"
|
|
. endif
|
|
.endfor
|
|
|
|
name: check
|
|
@echo ${PLUGIN_PREFIX}${PLUGIN_NAME}
|
|
|
|
depends: check
|
|
@echo ${PLUGIN_DEPENDS}
|
|
|
|
manifest: check
|
|
@echo "name: ${PLUGIN_PREFIX}${PLUGIN_NAME}"
|
|
@echo "version: \"${PLUGIN_VERSION}\""
|
|
@echo "origin: opnsense/${PLUGIN_PREFIX}${PLUGIN_NAME}"
|
|
@echo "comment: \"${PLUGIN_COMMENT}\""
|
|
@echo "desc: \"${PLUGIN_DESC}\""
|
|
@echo "maintainer: ${PLUGIN_MAINTAINER}"
|
|
@echo "www: https://opnsense.org/"
|
|
@echo "prefix: /"
|
|
@echo "deps: {"
|
|
@for PLUGIN_DEPEND in ${PLUGIN_DEPENDS}; do \
|
|
${PKG} query ' %n: { version: "%v", origin: "%o" }' \
|
|
$${PLUGIN_DEPEND}; \
|
|
done
|
|
@echo "}"
|
|
|
|
scripts: check
|
|
@mkdir -p ${DESTDIR}
|
|
@for SCRIPT in ${PLUGIN_SCRIPTS}; do \
|
|
if [ -f $${SCRIPT} ]; then \
|
|
cp $${SCRIPT} ${DESTDIR}; \
|
|
fi; \
|
|
done
|
|
|
|
install: check
|
|
@mkdir -p ${DESTDIR}${LOCALBASE}
|
|
@(cd ${.CURDIR}/src; find * -type f) | while read FILE; do \
|
|
tar -C ${.CURDIR}/src -cpf - $${FILE} | \
|
|
tar -C ${DESTDIR}${LOCALBASE} -xpf -; \
|
|
done
|
|
|
|
plist: check
|
|
@(cd ${.CURDIR}/src; find * -type f) | while read FILE; do \
|
|
echo ${LOCALBASE}/$${FILE}; \
|
|
done
|
|
|
|
collect: check
|
|
@(cd ${.CURDIR}/src; find * -type f) | while read FILE; do \
|
|
tar -C ${DESTDIR}${LOCALBASE} -cpf - $${FILE} | \
|
|
tar -C ${.CURDIR}/src -xpf -; \
|
|
done
|
|
|
|
remove: check
|
|
@(cd ${.CURDIR}/src; find * -type f) | while read FILE; do \
|
|
rm -f ${DESTDIR}${LOCALBASE}/$${FILE}; \
|
|
done
|
|
@(cd ${.CURDIR}/src; find * -type d -depth) | while read DIR; do \
|
|
if [ -d ${DESTDIR}${LOCALBASE}/$${DIR} ]; then \
|
|
rmdir ${DESTDIR}${LOCALBASE}/$${DIR}; \
|
|
fi; \
|
|
done
|
|
|
|
mount: check
|
|
mount_unionfs ${.CURDIR}/src ${DESTDIR}${LOCALBASE}
|
|
|
|
umount: check
|
|
umount -f "<above>:${.CURDIR}/src"
|
|
|
|
clean: check
|
|
@git reset -q . && git checkout -f . && git clean -xdqf .
|
|
|
|
.PHONY: check
|