mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
27 lines
477 B
Makefile
27 lines
477 B
Makefile
COMMENT = pkg_add speed up cache
|
|
CATEGORIES = databases
|
|
DISTFILES =
|
|
|
|
# API.rev
|
|
PKGNAME = updatedb-0
|
|
MAINTAINER = Marc Espie <espie@openbsd.org>
|
|
PKG_ARCH = *
|
|
REVISION = 0
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
DPB_PROPERTIES = later
|
|
|
|
NO_TEST = Yes
|
|
|
|
LIST = ${WRKDIR}/update.list
|
|
|
|
do-build:
|
|
perl ${FILESDIR}/list_update_info -o ${LIST} \
|
|
${PACKAGE_REPOSITORY}/${MACHINE_ARCH}/all
|
|
|
|
do-install:
|
|
/usr/libexec/locate.mklocatedb <${LIST} >${PREFIX}/share/update.db
|
|
|
|
.include <bsd.port.mk>
|