* honor BINDIR, INSTALL_MAN, MANDIR, and PREFIX during configure and install * remove -v option, your package manager of choice can already provide the same information * remove -h option in favor of the manual * do not output options as part of the usage output, in favor of the manual instead. * mark unused variables in compat files as extern in order to compile using GCC 10
25 lines
427 B
Makefile
25 lines
427 B
Makefile
# $OpenBSD: Makefile,v 1.12 2020/05/16 08:31:55 anton Exp $
|
|
|
|
COMMENT = fuzzy select anything
|
|
|
|
V = 4.0.0
|
|
DISTNAME = pick-${V}
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://github.com/mptre/pick
|
|
|
|
MAINTAINER = Anton Lindqvist <anton@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# uses pledge()
|
|
WANTLIB += c curses
|
|
|
|
MASTER_SITES = https://github.com/mptre/pick/releases/download/v${V}/
|
|
|
|
CONFIGURE_STYLE = simple
|
|
|
|
.include <bsd.port.mk>
|