Date: Wed, 2 Dec 2015 15:43:54 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402832 - in head/archivers: . innoextract Message-ID: <201512021543.tB2Fhsei025906@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Wed Dec 2 15:43:54 2015 New Revision: 402832 URL: https://svnweb.freebsd.org/changeset/ports/402832 Log: Inno Setup is a tool to create installers for Microsoft Windows applications. innoextract allows to extract such installers under non-windows systems without running the actual installer using Wine. WWW: http://constexpr.org/innoextract/ PR: 204811 Submitted by: lifanov@mail.lifanov.com Added: head/archivers/innoextract/ head/archivers/innoextract/Makefile (contents, props changed) head/archivers/innoextract/distinfo (contents, props changed) head/archivers/innoextract/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Wed Dec 2 15:40:07 2015 (r402831) +++ head/archivers/Makefile Wed Dec 2 15:43:54 2015 (r402832) @@ -47,6 +47,7 @@ SUBDIR += hs-zlib SUBDIR += hs-zlib-bindings SUBDIR += hs-zlib-enum + SUBDIR += innoextract SUBDIR += javatar SUBDIR += jzip.org SUBDIR += jzlib Added: head/archivers/innoextract/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/innoextract/Makefile Wed Dec 2 15:43:54 2015 (r402832) @@ -0,0 +1,26 @@ +# Created by: Nikolai Lifanov <lifanov@mail.lifanov.com> +# $FreeBSD$ + +PORTNAME= innoextract +PORTVERSION= 1.5 +CATEGORIES= archivers +MASTER_SITES= http://constexpr.org/innoextract/files/ + +MAINTAINER= lifanov@mail.lifanov.com +COMMENT= Program to extract Inno Setup files + +LICENSE= ZLIB +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libboost_iostreams.so:${PORTSDIR}/devel/boost-libs \ + libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ + libboost_system.so:${PORTSDIR}/devel/boost-libs \ + libboost_program_options.so:${PORTSDIR}/devel/boost-libs + +USES= cmake iconv +CMAKE_ARGS= -DCMAKE_INSTALL_MANDIR=man + +PLIST_FILES= bin/innoextract \ + man/man1/innoextract.1.gz + +.include <bsd.port.mk> Added: head/archivers/innoextract/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/innoextract/distinfo Wed Dec 2 15:43:54 2015 (r402832) @@ -0,0 +1,2 @@ +SHA256 (innoextract-1.5.tar.gz) = f2594e992ccf2859455475794803b29a67393fadb69d4df1eec34c451ffa48cf +SIZE (innoextract-1.5.tar.gz) = 179582 Added: head/archivers/innoextract/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/innoextract/pkg-descr Wed Dec 2 15:43:54 2015 (r402832) @@ -0,0 +1,5 @@ +Inno Setup is a tool to create installers for Microsoft Windows applications. +innoextract allows to extract such installers under non-windows systems without +running the actual installer using Wine. + +WWW: http://constexpr.org/innoextract/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512021543.tB2Fhsei025906>