18 lines
351 B
Bash
Executable File
18 lines
351 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
DEST=$1
|
|
|
|
make store_git_version
|
|
make dist
|
|
# 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
|