freebsd-ports/graphics/ppsei/Makefile
Romain Tartière b0abbc606d ppsei (PPS Extract Images) is a simple command line program, which tries to
extract images from Microsoft PowerPoint documents (PPS/PPT).

WWW:	http://sourceforge.net/projects/ppsei/
2011-06-12 12:21:46 +00:00

27 lines
589 B
Makefile

# New ports collection makefile for: ppsei
# Date created: 2011-05-19
# Whom: Romain Tartiere <romain@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= ppsei
PORTVERSION= 0.2
CATEGORIES= graphics
MASTER_SITES= SF
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
EXTRACT_SUFX= .tgz
MAINTAINER= romain@FreeBSD.org
COMMENT= PowerPoint images extractor
PLIST_FILES= bin/${PORTNAME}
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
do-build:
@(cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c)
do-install:
@(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${PREFIX}/bin)
.include <bsd.port.mk>