You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
317 B
10 lines
317 B
#!/bin/bash -e
|
|
|
|
apt-get install -y autoconf curl libtool
|
|
curl -O https://capnproto.org/capnproto-c++-0.6.1.tar.gz
|
|
tar xvf capnproto-c++-0.6.1.tar.gz
|
|
cd capnproto-c++-0.6.1
|
|
./configure --prefix=/usr/local CPPFLAGS=-DPIC CFLAGS=-fPIC CXXFLAGS=-fPIC LDFLAGS=-fPIC --disable-shared --enable-static
|
|
make -j4
|
|
make install
|
|
|
|
|