mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
33 lines
655 B
Makefile
33 lines
655 B
Makefile
COMMENT = source code beautifier
|
|
|
|
V = 0.83.0
|
|
DISTNAME = uncrustify-$V
|
|
WRKDIST = ${WRKDIR}/uncrustify-${DISTNAME}
|
|
|
|
CATEGORIES = textproc devel
|
|
|
|
HOMEPAGE = https://github.com/uncrustify/uncrustify/
|
|
|
|
MAINTAINER = Sebastian Reitenbach <sebastia@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c m ${COMPILER_LIBCXX}
|
|
|
|
SITES = https://github.com/uncrustify/uncrustify/releases/download/uncrustify-$V/ \
|
|
${SITE_SOURCEFORGE:=uncrustify/}
|
|
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
MODULES = devel/cmake \
|
|
lang/python
|
|
|
|
MODPY_RUNDEP = No
|
|
|
|
post-install:
|
|
mv ${PREFIX}/share/doc/uncrustify/examples \
|
|
${PREFIX}/share/examples/uncrustify
|
|
|
|
.include <bsd.port.mk>
|