mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
25 lines
569 B
Makefile
25 lines
569 B
Makefile
# Created by: Vanilla I. Shu <vanilla@FreeBSD.org>
|
|
# $FreeBSD: head/archivers/snappy/Makefile 457139 2017-12-24 10:48:23Z danfe $
|
|
|
|
PORTNAME= snappy
|
|
PORTVERSION= 1.1.6
|
|
CATEGORIES= archivers
|
|
PKGNAMEPREFIX= lib
|
|
|
|
MAINTAINER= vanilla@FreeBSD.org
|
|
COMMENT= Fast compressor/decompressor library
|
|
|
|
USES= autoreconf libtool pathfix pkgconfig
|
|
CONFIGURE_ARGS= --disable-gtest
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CFLAGS+= -DNDEBUG
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= google
|
|
TEST_TARGET= check
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/libsnappy.so*
|
|
|
|
.include <bsd.port.mk>
|