svn commit: r402832 - in head/archivers: . innoextract

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Dec 2 15:43:56 UTC 2015


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 at 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 at mail.lifanov.com>
+# $FreeBSD$
+
+PORTNAME=	innoextract
+PORTVERSION=	1.5
+CATEGORIES=	archivers
+MASTER_SITES=	http://constexpr.org/innoextract/files/
+
+MAINTAINER=	lifanov at 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/


More information about the svn-ports-head mailing list