summaryrefslogtreecommitdiff
path: root/irfanview
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-05-17 22:40:09 -0400
committerB Stack <bgstack15@gmail.com>2019-05-17 22:40:09 -0400
commit5fbfb23ed0df3537550c00697feef1cbf5e5eca5 (patch)
tree6323dbb73edbd5bc27e1cb7332237a590d7e3b46 /irfanview
parentMerge branch 'scite-bump' into 'master' (diff)
downloadstackrpms-5fbfb23ed0df3537550c00697feef1cbf5e5eca5.tar.gz
stackrpms-5fbfb23ed0df3537550c00697feef1cbf5e5eca5.tar.bz2
stackrpms-5fbfb23ed0df3537550c00697feef1cbf5e5eca5.zip
document procedure for building orig.tar.gz
Diffstat (limited to 'irfanview')
-rw-r--r--irfanview/debian/README.Debian21
1 files changed, 19 insertions, 2 deletions
diff --git a/irfanview/debian/README.Debian b/irfanview/debian/README.Debian
index bcba7ce..04853e4 100644
--- a/irfanview/debian/README.Debian
+++ b/irfanview/debian/README.Debian
@@ -1,5 +1,22 @@
irfanview for Devuan
-No customizations beyond what was necessary to build the dpkg.
+To retrieve the source files, you can use:
+wget --referer='http://www.irfanview.info/files/iview453.zip' --user-agent='Mozilla (X11)' http://irfanview.info/files/iview453.zip
- -- B Stack <bgstack15@gmail.com> Thu, 07 Feb 2019 14:33:49 -0500
+To build the irfanview_4.53.orig.tar.gz, you have to take all four source zip files:
+* iview453.zip
+* iview453_x64.zip
+* iview453_plugins.zip
+* iview453_plugins_x64.zip
+
+And extract them like so:
+iver=453
+dir_iver="$( echo "${iver}" | head -c1 ).$( echo "${iver}" | tail -c3 )"
+mkdir -p "irfanview-${dir_iver}" ; cd "irfanview-${dir_iver}"
+mkdir -p irfanview-bin32 irfanview-bin64
+cd irfanview-bin32 ; unzip ../../iview${iver}.zip ; cd Plugins ; unzip ../../../iview${iver}_plugins.zip ; cd ../..
+cd irfanview-bin64 ; unzip ../../iview${iver}_x64.zip ; cd Plugins ; unzip ../../../iview${iver}_plugins_x64.zip ; cd ../..
+cd ..
+tar -zcf "irfanview_${dir_iver}.orig.tar.gz" "irfanview-${dir_iver}"
+
+ -- B Stack <bgstack15@gmail.com> Thu, 17 May 2019 22:40:20 -0500
bgstack15