diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-12-02 15:43:54 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-12-02 15:43:54 +0000 |
commit | 371cd76eab01afc6f5ed47f0f2ffd8e017a73a69 (patch) | |
tree | d3e31e46b9413570182e8c67f81f69b3f7c996a2 /archivers/innoextract | |
parent | 9a4f70cead35786d48bc7e8dbd9a99f0f9229f06 (diff) | |
download | ports-371cd76eab01afc6f5ed47f0f2ffd8e017a73a69.tar.gz ports-371cd76eab01afc6f5ed47f0f2ffd8e017a73a69.zip |
Notes
Diffstat (limited to 'archivers/innoextract')
-rw-r--r-- | archivers/innoextract/Makefile | 26 | ||||
-rw-r--r-- | archivers/innoextract/distinfo | 2 | ||||
-rw-r--r-- | archivers/innoextract/pkg-descr | 5 |
3 files changed, 33 insertions, 0 deletions
diff --git a/archivers/innoextract/Makefile b/archivers/innoextract/Makefile new file mode 100644 index 000000000000..213d5670cb96 --- /dev/null +++ b/archivers/innoextract/Makefile @@ -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> diff --git a/archivers/innoextract/distinfo b/archivers/innoextract/distinfo new file mode 100644 index 000000000000..bf79c2631464 --- /dev/null +++ b/archivers/innoextract/distinfo @@ -0,0 +1,2 @@ +SHA256 (innoextract-1.5.tar.gz) = f2594e992ccf2859455475794803b29a67393fadb69d4df1eec34c451ffa48cf +SIZE (innoextract-1.5.tar.gz) = 179582 diff --git a/archivers/innoextract/pkg-descr b/archivers/innoextract/pkg-descr new file mode 100644 index 000000000000..c7d118c112bf --- /dev/null +++ b/archivers/innoextract/pkg-descr @@ -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/ |