1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/lang/execline/Makefile
Fernando Apesteguía 5a349de225 lang/execline: update to 2.5.0.1
* Change maintainership
* Move DOCS variable to its proper place

PR:	231158
Submitted by:	colin-ports@heliocat.net
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D17223
2018-09-18 18:21:06 +00:00

41 lines
1017 B
Makefile

# Created by: Sergei Kolobov <sergei@kolobov.com>
# $FreeBSD$
PORTNAME= execline
PORTVERSION= 2.5.0.1
CATEGORIES= lang shells
MASTER_SITES= https://www.skarnet.org/software/${PORTNAME}/
MAINTAINER= crest@rlwinm.de
COMMENT= Lightweight non-interactive sh(1)-like scripting language
LICENSE= ISCL
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= skalibs>=2.7.0.0:devel/skalibs
LIB_DEPENDS= libskarnet.so:devel/skalibs
USES= gmake
USE_LDCONFIG= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} \
--with-sysdeps=${LOCALBASE}/lib/skalibs/sysdeps \
--with-lib=${LOCALBASE}/lib/skalibs \
--with-dynlib=${LOCALBASE}/lib \
--with-include=${LOCALBASE}/include \
--enable-shared
OPTIONS_DEFINE= DOCS
DOCS= AUTHORS README doc/*.html
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libexecline.so.${PORTVERSION}
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>