1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
# debian/source_package_build.bash
# Part of the Debian package ‘inform6’.
#
# This is free software, and you are welcome to redistribute it under
# certain conditions; see the end of this file for copyright
# information, grant of license, and disclaimer of warranty.
# Common code for building Debian upstream source package.
working_dir="$(mktemp -d -t)"
exit_sigspecs="ERR EXIT SIGTERM SIGHUP SIGINT SIGQUIT"
function cleanup_exit() {
exit_status=$?
trap - $exit_sigspecs
rm -rf "${working_dir}"
printf "Cleaned up working directory ‘${working_dir}’\n"
exit $exit_status
}
trap cleanup_exit $exit_sigspecs
package_name=$(dpkg-parsechangelog | sed -n -e 's/^Source: //p')
release_version=$(dpkg-parsechangelog | sed -n -e 's/^Version: //p')
upstream_version=$(printf "${release_version}" \
| sed -e 's/^[[:digit:]]\+://' -e 's/[-][^-]\+$//')
upstream_dirname="${package_name}-${upstream_version}.orig"
upstream_tarball_basename="${package_name}_${upstream_version}.orig"
function extract_tarball_to_working_dir() {
# Extract the specified tarball to the program's working directory.
local tarball="$1"
tar -xf "${tarball}" --directory "${working_dir}"
}
function archive_working_dir_to_tarball() {
# Archive the specified directory, relative to the working directory,
# to a new tarball of the specified name.
local source_dirname="$1"
local tarball="$2"
GZIP="--best" tar \
--directory "${working_dir}" \
-czf "${tarball}" \
"${source_dirname}"
}
# Copyright © 2010–2019 Ben Finney <bignose@debian.org>
#
# This is free software; you may copy, modify, and/or distribute this
# work under the terms of the GNU General Public License as published
# by the Free Software Foundation; version 3 of that License or later.
# No warranty expressed or implied.
# See the file ‘/usr/share/common-licenses/GPL-3’ for details.
# Local variables:
# coding: utf-8
# mode: shell-script
# indent-tabs-mode: nil
# End:
# vim: fileencoding=utf-8 filetype=bash expandtab :
|