mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
c6457ffef4
With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight
39 lines
751 B
Makefile
39 lines
751 B
Makefile
# Created by: Frederic Culot <frederic@culot.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libtpl
|
|
PORTVERSION= 1.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= culot@FreeBSD.org
|
|
COMMENT= Tpl is a library for serializing C data
|
|
|
|
LICENSE= GPLv3 MIT
|
|
LICENSE_COMB= multi
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USES= libtool tar:bzip2
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= waitman
|
|
GH_TAGNAME= 8fa17e5
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-shared
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_FILES= lib/libtpl.a lib/libtpl.so \
|
|
lib/libtpl.so.0 lib/libtpl.so.0.0.0 \
|
|
include/tpl.h
|
|
|
|
PORTDOCS= ChangeLog.txt examples.txt userguide.txt compiling.txt
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|