mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# Created by: Julien Laffaye <kimelto@gmail.com>
|
|
|
|
PORTNAME= discount
|
|
PORTVERSION= 2.2.7
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc devel
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= C implementation of the Markdown markup language
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
USES= pkgconfig
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Orc
|
|
|
|
CFLAGS+= -fPIC
|
|
CONFIGURE_ARGS= --mandir=${PREFIX}/share/man --prefix=${PREFIX} --shared
|
|
CONFIGURE_SCRIPT= configure.sh
|
|
HAS_CONFIGURE= yes
|
|
MAKE_JOBS_UNSAFE= yes # libmarkdown is used before it is built
|
|
INSTALL_TARGET= install install.man
|
|
TEST_TARGET= test
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFLICTS_INSTALL= markdown
|
|
|
|
OPTIONS_DEFINE= EXTRA SAMPLES TAB8
|
|
OPTIONS_DEFAULT=EXTRA TAB8
|
|
OPTIONS_SUB= yes
|
|
EXTRA_DESC= Enable all extra features
|
|
SAMPLES_DESC= Install sample programs
|
|
TAB8_DESC= Use a tabstop of 8 (default is 4)
|
|
|
|
EXTRA_CONFIGURE_ON= --with-dl=both --with-fenced-code --with-github-tags --with-id-anchor
|
|
SAMPLES_INSTALL_TARGET= install.samples
|
|
TAB8_CONFIGURE_ON= --with-tabstops=8
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/libmarkdown.a ${STAGEDIR}${PREFIX}/lib/libmarkdown.a
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmarkdown.so
|
|
|
|
.include <bsd.port.mk>
|