Codebase list i3-gaps / c4f5cf05-a1de-4d1f-9ca3-e3d4d1594fd4/main travis / debian-build.sh
c4f5cf05-a1de-4d1f-9ca3-e3d4d1594fd4/main

Tree @c4f5cf05-a1de-4d1f-9ca3-e3d4d1594fd4/main (Download .tar.gz)

debian-build.sh @c4f5cf05-a1de-4d1f-9ca3-e3d4d1594fd4/mainraw · history · blame

#!/bin/sh

set -e
set -x

DEST=$1

mkdir -p build
cd build
../configure
make echo-version > ../I3_VERSION
make dist-bzip2
# unpack dist tarball
mkdir -p "${DEST}"
tar xf *.tar.bz2 -C "${DEST}" --strip-components=1
cp -r ../debian "${DEST}"
sed -i '/^\s*libxcb-xrm-dev/d' deb/ubuntu-*/DIST/debian/control || true
cd "${DEST}"
debchange -m -l+g$(git describe --tags) 'Automatically built'
dpkg-buildpackage -b