31 lines
646 B
Makefile
31 lines
646 B
Makefile
# $OpenBSD: Makefile,v 1.20 2019/07/12 20:43:30 sthen Exp $
|
|
|
|
COMMENT= portable lossless data compression library
|
|
|
|
DISTNAME= ucl-1.03
|
|
REVISION= 3
|
|
CATEGORIES= archivers devel
|
|
SHARED_LIBS += ucl 1.0 # .1.0
|
|
|
|
HOMEPAGE= https://www.oberhumer.com/opensource/ucl/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MASTER_SITES= https://www.oberhumer.com/opensource/ucl/download/
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
BUILD_DEPENDS= devel/nasm
|
|
.endif
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_ARGS+= --enable-static
|
|
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/acconfig
|
|
MAKE_FLAGS= CFLAGS_O=""
|
|
|
|
do-test:
|
|
${WRKBUILD}/examples/simple
|
|
|
|
.include <bsd.port.mk>
|