diff options
author | Matthieu Herrb <matthieu@herrb.eu> | 2020-12-13 18:18:41 +0100 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2020-12-13 18:18:41 +0100 |
commit | acc27565c7f50e4c9ad2e8c5c24ca7164ce45560 (patch) | |
tree | 3c6fe4f3125aedb16a907f03e44303ef91c1c5f0 /devel/xcb-util-m4/Makefile | |
parent | 8a8288490009cc62fec0910d9d5ed12e4324436b (diff) |
add devel/xcb-util-m4
XXX probably useless
Diffstat (limited to 'devel/xcb-util-m4/Makefile')
-rw-r--r-- | devel/xcb-util-m4/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/devel/xcb-util-m4/Makefile b/devel/xcb-util-m4/Makefile new file mode 100644 index 0000000..2d40cf2 --- /dev/null +++ b/devel/xcb-util-m4/Makefile @@ -0,0 +1,35 @@ +# $OpenBSD$ + +COMMENT = GNU autoconf macros shared across XCB projects +CATEGORIES = devel + +PKGNAME = xcb-util-m4-0.1 + +PERMIT_PACKAGE = Yes + +DISTFILES = ax_compare_version.m4 \ + xcb_util_common.m4 \ + xcb_util_m4_with_include_path.m4 + +DIST_SUBDIR = xcb-util-m4 + +HOMEPAGE = https://gitlab.freedesktop.org/xorg/util/xcb-util-m4 + +MASTER_SITES = https://gitlab.freedesktop.org/xorg/util/xcb-util-m4/-/raw/master/ + +CONFIGURE_STYLE = none +NO_BUILD = +NO_TEST = + +do-extract: + @for f in ${DISTFILES} ; do \ + cp ${FULLDISTDIR}/$$f ${WRKDIR}/ ; \ + done + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/aclocal + for f in ${DISTFILES} ; do \ + ${INSTALL_DATA} ${WRKDIR}/$$f ${PREFIX}/share/aclocal/ ; \ + done + +.include <bsd.port.mk> |