Mercurial > hg > easyhg
view deploy/linux/deploy-deb.sh @ 711:87d423722656
Further deb packaging fixes, including undoing the last change, which appears to be not permitted
author | Chris Cannam |
---|---|
date | Wed, 12 Dec 2018 11:44:21 +0000 |
parents | a13d89b87c2c |
children | 2b51235b3cb8 |
line wrap: on
line source
#!/bin/bash # # Run this from the build root (with sudo, I think) usage() { echo echo "Usage:" echo echo "$0 <version> <architecture>" echo echo "For example: $0 1.4cc1-1 amd64" echo exit 2 } version="$1" arch="$2" if [ -z "$version" ] || [ -z "$arch" ]; then usage fi set -eu program=EasyMercurial package=easymercurial depdir=deploy/linux targetdir="${package}_${version}_${arch}" echo "Target dir is $targetdir" if [ -d "$targetdir" ]; then echo "Target directory exists, not overwriting" exit fi mkdir "$targetdir" mkdir "$targetdir/DEBIAN" cp "$depdir"/control "$targetdir"/DEBIAN/ mkdir -p "$targetdir"/usr/bin "$targetdir"/usr/share/pixmaps "$targetdir"/usr/share/applications "$targetdir"/usr/share/doc/"$package" cp "$program" "$targetdir"/usr/bin/ cp images/icon/scalable/easyhg-icon.svg "$targetdir"/usr/share/pixmaps/ cp images/icon/128/easyhg-icon.png "$targetdir"/usr/share/pixmaps/ cp deploy/linux/"$program".desktop "$targetdir"/usr/share/applications/"$package".desktop cp README.txt "$targetdir"/usr/share/doc/"$package"/ cat > "$targetdir"/usr/share/doc/"$package"/copyright <<EOF EasyMercurial is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the file /usr/share/common-licenses/GPL-2 for more information. EOF touch "$targetdir"/usr/share/doc/"$package"/changelog.Debian gzip -9 "$targetdir"/usr/share/doc/"$package"/changelog.Debian perl -i -p -e "s/Architecture: .*/Architecture: $arch/" "$targetdir"/DEBIAN/control deps=`bash "$depdir"/debian-dependencies.sh "$program"` perl -i -p -e "s/Depends: .*/$deps/" "$targetdir"/DEBIAN/control control_ver=${version%-?} perl -i -p -e "s/Version: .*/Version: $control_ver/" "$targetdir"/DEBIAN/control bash "$depdir"/fix-lintian-bits.sh "$targetdir" dpkg-deb --build "$targetdir" && lintian "$targetdir".deb