semi-working build script for deb packages

This commit is contained in:
John McLear 2013-11-24 02:42:50 +00:00
parent 8b821d42a2
commit 61df1facd2
7 changed files with 226 additions and 0 deletions

View file

@ -0,0 +1,9 @@
Package: etherpad
Version: 1.3
Section: base
Priority: optional
Architecture: i386
Installed-Size: SIZE
Depends:
Maintainer: John McLear <john@mclear.co.uk>
Description: Etherpad is a collaborative editor.

6
bin/deb-src/DEBIAN/postinst Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
# Start the services!
service etherpad start
echo "Give Etherpad about 3 minutes to install dependencies and start"
rm -f /tmp/etherpad.log /tmp/etherpad.err

23
bin/deb-src/DEBIAN/preinst Executable file
View file

@ -0,0 +1,23 @@
#!/bin/bash
# Installs node if it isn't already installed
#
# Don't steamroll over a previously installed node version
# TODO provide a local version of node?
VER="0.10.4"
ARCH="x86"
if [ `arch | grep 64` ]
then
ARCH="x64"
fi
# TODO test version
if [ ! -f /usr/local/bin/node ]
then
pushd /tmp
wget -c "http://nodejs.org/dist/v${VER}/node-v${VER}-linux-${ARCH}.tar.gz"
rm -rf /tmp/node-v${VER}-linux-${ARCH}
tar xf node-v${VER}-linux-${ARCH}.tar.gz -C /tmp/
cp -a /tmp/node-v${VER}-linux-${ARCH}/* /usr/local/
fi

4
bin/deb-src/DEBIAN/prerm Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
# Stop the appserver:
service etherpad stop || true