new package: nsis

pull/13/head
Volker Grabsch 15 years ago
parent 14aa246699
commit f4fdf41a17

@ -168,7 +168,7 @@
<dt>Linux</dt>
<dd>
Install GCC and GNU Make (&gt;= 3.81),
Install GCC, GNU Make (&gt;= 3.81) and SCons (&gt;= 0.98),
everything else is usually already there.
</dd>
@ -177,7 +177,7 @@
Create a minimal Debian system with
<a href="http://www.debian-administration.org/articles/426">debootstrap</a>,
then run:
<pre>aptitude install -R g++ make openssl unzip bzip2 patch</pre>
<pre>aptitude install -R g++ make scons openssl unzip bzip2 patch</pre>
</dd>
<dt>FreeBSD</dt>

@ -0,0 +1,21 @@
# NSIS
PKG := nsis
$(PKG)_VERSION := 2.44
$(PKG)_CHECKSUM := 07db4bcbbba7b66b4e1553c2d6ea42ed8eaab66a
$(PKG)_SUBDIR := nsis-$($(PKG)_VERSION)-src
$(PKG)_WEBSITE := http://nsis.sourceforge.net/
$(PKG)_FILE := nsis-$($(PKG)_VERSION)-src.tar.bz2
$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/nsis/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
wget -q -O- 'http://nsis.sourceforge.net/Download' | \
grep 'nsis-' | \
$(SED) -n 's,.*nsis-\([0-9][^>]*\)-src\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && scons PREFIX='$(PREFIX)' install
endef
Loading…
Cancel
Save