1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/archivers/unmakeself/Makefile
Marcelo Araujo 69759d4b85 - Remove 5.x support.
PR:		ports/124941
Submitted by:	Philip M. Gollucci <pgollucci@p6m7g8.com>
2008-06-25 01:09:33 +00:00

37 lines
794 B
Makefile

# New ports collection makefile for: unmakeself
# Date created: 31 Mar 2005
# Whom: Jean-Yves Lefort <jylefort@brutele.be>
#
# $FreeBSD$
#
PORTNAME= unmakeself
PORTVERSION= 1.1
CATEGORIES= archivers
DISTFILES=
MAINTAINER= ports@FreeBSD.org
COMMENT= Extract Makeself archives
LDFLAGS= -larchive -lbz2 -lz
NO_WRKSUBDIR= yes
PLIST_FILES= bin/unmakeself
do-configure:
@${RM} -f ${WRKSRC}/config.h
@if ${GREP} -q memmem /usr/include/string.h; then \
${ECHO_CMD} "#define HAS_MEMMEM" > ${WRKSRC}/config.h; \
else \
${ECHO_CMD} "#undef HAS_MEMMEM" > ${WRKSRC}/config.h; \
fi
do-build:
${CC} ${CFLAGS} ${CPPFLAGS} -I${WRKSRC} -o ${WRKSRC}/unmakeself \
${FILESDIR}/unmakeself.c ${LDFLAGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/unmakeself ${PREFIX}/bin
.include <bsd.port.mk>