fb8ab4ccad
This is not API-compatible with the 0.9 release. None of the ports consumers of this library currently build with it.
31 lines
656 B
Makefile
31 lines
656 B
Makefile
# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= librsync
|
|
PORTVERSION= 1.0.0
|
|
DISTVERSIONPREFIX=v
|
|
CATEGORIES= net devel
|
|
PKGNAMESUFFIX= 1
|
|
|
|
MAINTAINER= bdrewery@FreeBSD.org
|
|
COMMENT= Library for delta compression of streams
|
|
|
|
LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt
|
|
|
|
CONFLICTS= librsync-*
|
|
|
|
USE_GITHUB= yes
|
|
|
|
USES= gmake libtool autoreconf
|
|
USE_CSTD= gnu89
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --enable-shared --disable-trace
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librsync.so.2.0.0
|
|
|
|
.include <bsd.port.mk>
|