mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
12e263b358
Remove most of USES=zip:infozip PR: ports/188419 Approved by: portmgr (bapt) Exp-run: antoine
28 lines
565 B
Makefile
28 lines
565 B
Makefile
# Created by: Alex Samorukov <samm@os2.kiev.ua>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qpress
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://www.quicklz.com/
|
|
DISTNAME= qpress-11-source
|
|
|
|
MAINTAINER= samm@os2.kiev.ua
|
|
COMMENT= Portable file archiver using QuickLZ
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= dos2unix zip
|
|
EXTRACT_AFTER_ARGS= -d ${WRKSRC}
|
|
|
|
PLIST_FILES= bin/qpress
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && \
|
|
${CXX} ${CXXFLAGS} -o qpress qpress.cpp aio.cpp quicklz.c utilities.cpp -lpthread
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/qpress ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|