mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
32 lines
848 B
Makefile
32 lines
848 B
Makefile
# Created by: Antoine Brodin <antoine@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libfwsi
|
|
# If/When moving from experimental to alpha, switch to DISTVERSIONPREFIX to prevent PORTEPOCH
|
|
DISTVERSION= experimental-20150701
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://github.com/libyal/libfwsi/releases/download/${PORTVERSION:E}/ \
|
|
LOCAL/antoine
|
|
|
|
MAINTAINER= antoine@FreeBSD.org
|
|
COMMENT= Library to access the Windows Shell Item format
|
|
|
|
LICENSE= LGPL3
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE}
|
|
USES= gettext libtool pathfix python
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:E}
|
|
|
|
PORTDOCS= AUTHORS ChangeLog
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|