mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
https://github.com/libimobiledevice/libplist/releases/tag/2.3.0 https://github.com/libimobiledevice/libplist/releases/tag/2.4.0 https://github.com/libimobiledevice/libplist/releases/tag/2.5.0 https://github.com/libimobiledevice/libplist/releases/tag/2.6.0 PR: 280014 Reported by: <fabio.comolli@gmail.com>
40 lines
840 B
Makefile
40 lines
840 B
Makefile
PORTNAME= libplist
|
|
PORTVERSION= 2.6.0
|
|
PORTREVISION?= 0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://github.com/libimobiledevice/${PORTNAME}/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER?= jhale@FreeBSD.org
|
|
COMMENT?= Library to handle Apple Property List format
|
|
WWW= https://www.libimobiledevice.org
|
|
|
|
LICENSE= LGPL21+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING.LESSER
|
|
|
|
USES+= autoreconf compiler cpe libtool pathfix pkgconfig tar:bzip2
|
|
CPE_VENDOR= libimobiledevice
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
SLAVE_PORT?= no
|
|
|
|
.if ${SLAVE_PORT} == no
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ARGS= --without-cython
|
|
|
|
TEST_TARGET= check
|
|
|
|
PORTDOCS= AUTHORS NEWS README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.endif # ${SLAVE_PORT} == no
|
|
|
|
.include <bsd.port.mk>
|