summaryrefslogtreecommitdiffstats
path: root/archive
diff options
context:
space:
mode:
authorFlorian Franzmann2018-04-12 18:35:01 +0200
committerFlorian Franzmann2018-04-12 20:24:32 +0200
commitcfeeb8bc61f97ac38fc6ac4ee79230b121e3d6a9 (patch)
tree8a6a5d0b9ed5dc0371dcd237d41213fee23558d7 /archive
parenta977374887a908abfd0f7d0a4aeeeb19d5fd74f3 (diff)
archive/innoextract: new spell, an extractor for Inno Setup installers
Diffstat (limited to 'archive')
-rwxr-xr-xarchive/innoextract/BUILD1
-rwxr-xr-xarchive/innoextract/DEPENDS12
-rwxr-xr-xarchive/innoextract/DETAILS15
-rw-r--r--archive/innoextract/HISTORY3
4 files changed, 31 insertions, 0 deletions
diff --git a/archive/innoextract/BUILD b/archive/innoextract/BUILD
new file mode 100755
index 0000000000..e013b8d866
--- /dev/null
+++ b/archive/innoextract/BUILD
@@ -0,0 +1 @@
+cmake_build
diff --git a/archive/innoextract/DEPENDS b/archive/innoextract/DEPENDS
new file mode 100755
index 0000000000..b3f132831a
--- /dev/null
+++ b/archive/innoextract/DEPENDS
@@ -0,0 +1,12 @@
+depends -sub CXX gcc &&
+
+depends LZMA &&
+depends zlib &&
+depends bzip2 &&
+
+depends boost &&
+sub_depends boost IOSTREAMS &&
+sub_depends boost FILESYSTEM &&
+sub_depends boost DATE_TIME &&
+sub_depends boost SYSTEM &&
+sub_depends boost PROGRAM_OPTIONS
diff --git a/archive/innoextract/DETAILS b/archive/innoextract/DETAILS
new file mode 100755
index 0000000000..9d60741db5
--- /dev/null
+++ b/archive/innoextract/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=innoextract
+ VERSION=
+ SOURCE="1.6.tar.gz"
+ SOURCE_URL[0]=https://github.com/dscharrer/${SPELL}/archive/${SOURCE}
+ SOURCE_HASH=sha512:f49a97c3b569316f51becd9fe68f996ccd5aff0b9b44298f6fd8bd9ea695437e400448561ed66d1c1fb8c41126b813a7e779ec57ebff190edc7a8b350816db79
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-1.6"
+ WEB_SITE="http://constexpr.org/innoextract/"
+ LICENSE[0]=zlib
+ ENTERED=20180412
+ SHORT="a tool for extracting installers created with Inno Setup"
+cat << EOF
+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.
+EOF
diff --git a/archive/innoextract/HISTORY b/archive/innoextract/HISTORY
new file mode 100644
index 0000000000..d82cc0f508
--- /dev/null
+++ b/archive/innoextract/HISTORY
@@ -0,0 +1,3 @@
+2018-04-12 Florian Franzmann <siflfran@hawo.stw.uni-erlangen.de>
+ * BUILD, DEPENDS, DETAILS: spell created
+