fc8016be10
Changes: 0.9.5 ----- * Fix warning with libgit2 v0.99+, remain compatible with older versions. Adapted from a patch by Augustin Fabre, thanks! * Add abbreviated commit hash to submodule file, by Oscar Benedito * Add an -u option to make URLs in Atom feeds absolute. Feed URLs should be absolute according to the RFC, thanks to adc for the idea. * A few performance micro-optimizations. * Some code-style improvements. * Atom feeds: remove the wrong content-type for <link> (was text/html). * UTF-8 text padding: * Fix potential byte-seek issue with negative width codepoints in the range >= 127 on some systems. * Improve padded printing and printing invalid unicode characters.
20 lines
553 B
Makefile
20 lines
553 B
Makefile
# $NetBSD: Makefile,v 1.6 2021/03/14 19:10:46 leot Exp $
|
|
|
|
DISTNAME= stagit-gopher-0.9.5
|
|
CATEGORIES= net
|
|
MASTER_SITES= https://codemadness.org/releases/stagit-gopher/
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= https://codemadness.org/git/stagit-gopher/file/README.html
|
|
COMMENT= Static git page generator for gopher
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= c99
|
|
|
|
MAKE_FLAGS+= PREFIX=${PREFIX}
|
|
MAKE_FLAGS+= MANPREFIX=${PREFIX}/${PKGMANDIR}
|
|
MAKE_FLAGS+= LIBGIT_INC=
|
|
MAKE_FLAGS+= LIBGIT_LIB=-lgit2
|
|
|
|
.include "../../devel/libgit2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|