Megatest

Check-in [dc6f698439]
Login
Overview
Comment:Added support for building private copy of libuuid
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: dc6f6984391c7a938f7960e484ff4e6b96cd291b
User & Date: matt on 2012-10-21 16:45:42
Other Links: manifest | tags
Context
2012-10-21
17:46
Partial implementation of deployable installer check-in: 64e3a5847c user: matt tags: trunk
16:45
Added support for building private copy of libuuid check-in: dc6f698439 user: matt tags: trunk
15:03
Added zmq example and install support check-in: b3e432ecb4 user: matt tags: trunk
Changes

Modified utils/installall.sh from [ad96d410c3] to [9896790cd2].

155
156
157
158
159
160
161









162
163
164
165
166
167
168
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177







+
+
+
+
+
+
+
+
+







CSC_OPTIONS="-I$PREFIX/include -L$CSCLIBS" chicken-install $PROX -D no-library-checks canvas-draw

# http://download.zeromq.org/zeromq-2.2.0.tar.gz
ZEROMQ=zeromq-2.2.0
if ! [[ -e ${ZEROMQ}.tar.gz ]] ; then
    wget http://download.zeromq.org/${ZEROMQ}.tar.gz
fi

if ! [[ -e libuuid ]] ; then
    wget wget http://www.kiatoa.com/matt/iup/e2fsprogs-1.42.5.tar.gz
    cd e2fsprogs-1.42.5
    mkdir build
    ./configure --prefix=$PREFIX
    cd lib/uuid
    make install
fi

if [[ -e ${ZEROMQ}.tar.gz ]] ; then
    tar xfz ${ZEROMQ}.tar.gz
    cd ${ZEROMQ}
    ./configure --prefix=$PREFIX
    make
    make install