mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-14 08:34:39 +00:00
15 lines
415 B
Makefile
15 lines
415 B
Makefile
all:
|
|
|
|
install:
|
|
@mkdir -p ${DESTDIR}/usr/local/etc/pkg
|
|
@cp -vr ${.CURDIR}/repos ${DESTDIR}/usr/local/etc/pkg/
|
|
@cp -vr ${.CURDIR}/fingerprints ${DESTDIR}/usr/local/etc/pkg/
|
|
|
|
plist:
|
|
@(cd ${.CURDIR}/repos; find * -type f) | \
|
|
xargs -n1 printf "/usr/local/etc/pkg/repos/%s\n"
|
|
@(cd ${.CURDIR}/fingerprints; find * -type f) | \
|
|
xargs -n1 printf "/usr/local/etc/pkg/fingerprints/%s\n"
|
|
|
|
.PHONY: install plist
|