mirror of
https://github.com/ohwgiles/laminar.git
synced 2024-10-27 20:34:20 +00:00
82 lines
2.1 KiB
Bash
Executable File
82 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
OUTPUT_DIR=$PWD
|
|
|
|
SOURCE_DIR=$(readlink -f $(dirname ${BASH_SOURCE[0]}))
|
|
|
|
VERSION=$(cd "$SOURCE_DIR" && git describe --tags --abbrev=8 --dirty)
|
|
|
|
docker run --rm -i -v $SOURCE_DIR:/root/rpmbuild/SOURCES/laminar-$VERSION:ro -v $OUTPUT_DIR:/output centos bash -xe <<EOS
|
|
|
|
yum -y install epel-release
|
|
yum -y install rpm-build cmake3 make gcc gcc-c++ wget sqlite-devel boost-devel zlib-devel
|
|
|
|
mkdir /build
|
|
cd /build
|
|
|
|
wget -O capnproto.tar.gz https://github.com/capnproto/capnproto/archive/7a7c4007e3e1b249f078a246749a584c96bf7503.tar.gz
|
|
wget -O websocketpp.tar.gz https://github.com/zaphoyd/websocketpp/archive/0.7.0.tar.gz
|
|
wget -O rapidjson.tar.gz https://github.com/miloyip/rapidjson/archive/v1.1.0.tar.gz
|
|
md5sum -c <<EOF
|
|
58d238ffbb19152f04d2bff520847788 capnproto.tar.gz
|
|
5027c20cde76fdaef83a74acfcf98e23 websocketpp.tar.gz
|
|
badd12c511e081fec6c89c43a7027bce rapidjson.tar.gz
|
|
EOF
|
|
|
|
tar xzf capnproto.tar.gz
|
|
tar xzf websocketpp.tar.gz
|
|
tar xzf rapidjson.tar.gz
|
|
|
|
cd /build/capnproto-7a7c4007e3e1b249f078a246749a584c96bf7503/c++/
|
|
cmake3 -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=off .
|
|
make -j4
|
|
make install
|
|
|
|
cd /build/websocketpp-0.7.0/
|
|
cmake3 .
|
|
make install
|
|
|
|
cd /build/rapidjson-1.1.0/
|
|
cmake3 -DRAPIDJSON_BUILD_EXAMPLES=off .
|
|
make install
|
|
|
|
cd
|
|
cat <<EOF > laminar.spec
|
|
Summary: Lightweight Continuous Integration Service
|
|
Name: laminar
|
|
Version: $VERSION
|
|
Release: 1
|
|
License: GPL
|
|
BuildRequires: systemd-units
|
|
Requires: boost-filesystem zlib
|
|
|
|
%description
|
|
Lightweight Continuous Integration Service
|
|
|
|
%prep
|
|
|
|
%build
|
|
cmake3 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/ %{_sourcedir}/laminar-$VERSION
|
|
pwd
|
|
make
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%files
|
|
%{_bindir}/laminarc
|
|
%{_bindir}/laminard
|
|
%{_unitdir}/laminar.service
|
|
%config(noreplace) %{_sysconfdir}/laminar.conf
|
|
|
|
%post
|
|
echo Creating laminar user with home in %{_sharedstatedir}/laminar
|
|
useradd -r -d %{_sharedstatedir}/laminar -s %{_sbindir}/nologin laminar
|
|
mkdir -p %{_sharedstatedir}/laminar/cfg/{jobs,nodes,scripts}
|
|
chown -R laminar: %{_sharedstatedir}/laminar
|
|
EOF
|
|
|
|
rpmbuild -ba laminar.spec
|
|
mv rpmbuild/RPMS/x86_64/laminar-$VERSION-1.x86_64.rpm /output/
|
|
EOS
|