Compare commits

...

12 commits
v0.0.1 ... main

Author SHA1 Message Date
leafee98 24172f0771 fix: can't switch to remote branch by git fragment 2024-01-31 14:08:51 +08:00
leafee98 932f8b695e breaking: exit normally when package already built
This is helpful when using local_build.sh scripts.
2024-01-30 16:32:31 +08:00
leafee98 985c0e7a06 Add argument --is-dynamic-pkgver 2023-08-18 20:04:03 +08:00
leafee98 fe278387e5 Add help for --nobuild argument 2023-08-18 19:35:30 +08:00
leafee98 9aedecc62e Add help msg, use _STEP_CHCECK_PACKAGE_EXISTS to replace FORCE 2023-08-18 17:26:56 +08:00
leafee98 3065562dab Refactor code, refactor build script
- Refactor log
- Use variable to specific which step to run, and stop after which step
- Add a lot of program arguments
2023-08-17 16:42:56 +08:00
leafee98 3500ce0058 typo: retrive, fix err use a second level log mark 2023-08-11 21:48:46 +08:00
leafee98 dec5faa54b add section, priority and homepage properties 2023-08-02 22:18:56 +08:00
leafee98 175943aa4d fix: no compress with gzip when creating deb 2023-08-02 21:21:13 +08:00
leafee98 fc8dd81f00 add comment for existing file will be skipped 2023-07-18 21:09:45 +08:00
leafee98 a7f156b7c9 remove useless material 2023-07-18 21:08:28 +08:00
leafee98 20272db3d8 refactor example DEBBUILD, add LICENSE and README 2023-07-18 10:40:08 +08:00
7 changed files with 300 additions and 100 deletions

View file

@ -1,32 +1,60 @@
#/usr/bin/env bash #/usr/bin/env bash
pkgname="forgejo" pkgname="makedeb"
pkgver=23333 # this will be override by pkgver function pkgver=0.0.2.0.g175943a
pkgrel=1 pkgrel=1
arch="all"
pkgcommit="" pkgcommit=""
section="utils" # https://www.debian.org/doc/debian-policy/ch-archive.html#s-subsections
priority="optional" # https://www.debian.org/doc/debian-policy/ch-archive.html#s-priorities
pkgdesc="A painless selfhost git service." pkgdesc="A painless selfhost git service."
url="https://codeberg.org/forgejo/forgejo" url="https://git.leafee98.com/leafee98/makedeb"
maintainer="Leafee98 <me@leafee98.com>" maintainer="Leafee98 <me@leafee98.com>"
source=( source=(
"forgejo-1.19.0-2-linux-amd64.xz::https://codeberg.org/attachments/5f7f9d36-b85e-40db-b390-9bf39acbbbc5" "LICENSE::https://git.leafee98.com/leafee98/makedeb/raw/branch/main/LICENSE" # from http (existed file will skip, without checking hash)
"bwifi::git+https://cgit.leafee98.com/bwifi.git/#commit=8af4243f622bcb52f2e5be3345e282fd7cbad4d0" "makedeb-repo::git+https://git.leafee98.com/leafee98/makedeb.git#branch=main" # from git with https
"frp-0.46.1.tar.gz::material/frp-0.46.1.tar.gz" "README.md::README.md" # from local file
"pkg.zip::material/pkg.zip"
"t.sh::material/t.sh"
) )
# This will be run just follow extracting source # This will be run just after extracting source, and re-assign to `pkgver`
#
# If extracting version from source is not needed, don't define this function.
function pkgver { function pkgver {
echo "1.19.0-2" git describe --tags --long | sed 's/^v//;s/-/./g'
} }
function build { function build {
install -D "${srcdir}/t.sh" "${pkgdir}/usr/bin/t.sh" echo "Here should do something like compile sources."
echo "building" echo "But for this package we just print some messages."
} }
function package { function package {
echo "installing package, pkgdir: ${pkgdir}" install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/makedeb/LICENSE"
install -Dm755 "${srcdir}/makedeb-repo/makedeb" "${pkgdir}/usr/bin/makedeb"
install -Dm755 "${srcdir}/README.md" "${pkgdir}/usr/share/doc/makedeb/README.md"
} }
# The function describing hook for (pre|post)(inst|rm) should
# *print* content of those hook file.
# If the any hook is not needed, don't define those function.
#function debian_preinst {
#}
function debian_postinst {
cat << EOF
#!/usr/bin/env bash
echo "successfully installed makedeb"
EOF
}
#function debian_prerm {
#}
function debian_postrm {
cat << EOF
#!/usr/bin/env bash
echo "successfully removed makedeb"
EOF
}

22
LICENSE Normal file
View file

@ -0,0 +1,22 @@
MIT License
Copyright (c) 2023 Leafee98
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

35
README.md Normal file
View file

@ -0,0 +1,35 @@
# makedeb
Script for building Debian package quickly and easily. Inspired by Archlinux's makepkg.
## Example
Check the `DEBBUILD`
## Reference
### Build process
First it download needed content from array `sources`, then use function `pkgver` to determine the package version, then run function `build` and function `package`, then run hooks `debian_(pre|post)(inst|rm)` and make the printed strings as debian's hook scripts. Finally generate .deb with files in `$pkgdir`.
### Download and extract source
Every string in array `source` should be like `<actual_file_name>::<download_url>`. When downloading, the `download_url` content will be named with `<actual_file_name>`. When `build` and `pacage` run, every `<actual_file_name>` will be copied to `$srcdir`. If the file is a compressed file, it will be decompressed, if the file is a git repo, the specific branch, commit or tag will be checkouted.
### Global variables
- `pkgname`: package's name
- `pkgver`: package's version, if need to extract version from source, use function `pkgver`
- `pkgrel`: debian package reference, it should increase by one every build
- `pkgdesc`: package's description
- `section`: default `misc` if not specified
- `priority`: default `optional` if not specified
- `url`: packages upstream url
- `maintainer`: maintainer's contect information
### Global functions
- `pkgver`: should print the actual version. This override the variable `pkgver`
- `build`: do something like compile source
- `package`: do something like copy file from `$srcdir` to `$pkgdir`
- `debian_(pre|post)(inst|rm)`: should print content of debian hooks file

284
makedeb
View file

@ -6,10 +6,32 @@ buildfile="${workspace}/DEBBUILD"
srcdir="${workspace}/src" srcdir="${workspace}/src"
pkgdir="${workspace}/pkg" pkgdir="${workspace}/pkg"
FAKE_PACKAGE=0 _IN_FAKEROOT=0
_BACKUP_STDOUT=3 # use file descriptor 3 to backup stdout
_BACKUP_STDERR=4 # use file descriptor 4 to backup stderr
_ARGLIST=("$@")
OVERRIDE_SOURCE=0 OVERRIDE_SOURCE=0
SHOW_TARGET_FILE=0
QUIET=0 QUIET=0
PACKAGELIST=0
IS_DYNAMICV_PKGVER=0
_STEP_CLEAN=1
_STEP_RETRIEVE_SOURCE=1
_STEP_EXTRACT_SOURCE=1
_STEP_UPDATE_PKGVER=1
_STEP_CHCECK_PACKAGE_EXISTS=1
_STEP_BUILD=1
_STEP_PACKAGE=1
_STEP_CREATE_ARCHIVE=1
_STOP_AFTER_CLEAN=0
_STOP_AFTER_RETRIEVE_SOURCE=0
_STOP_AFTER_EXTRACT_SOURCE=0
_STOP_AFTER_UPDATE_PKGVER=0
#_STEP_CHCECK_PACKAGE_EXISTS=0 # stop after checking exists is useless
_STOP_AFTER_BUILD=0
_STOP_AFTER_PACKAGE=0
_STOP_AFTER_CREATE_ARCHIVE=0
set -o functrace set -o functrace
set -o nounset set -o nounset
@ -50,10 +72,15 @@ function msg2 {
local mesg=$1; shift local mesg=$1; shift
printf "${BLUE} ->${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}\n" "$@" printf "${BLUE} ->${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}\n" "$@"
} }
function warn {
(( QUIET )) && return 0
local mesg=$1; shift
printf "${YELLOW}==>${ALL_OFF}${BOLD}${YELLOW} ${mesg}${ALL_OFF}\n" "$@" >&2
}
function err { function err {
(( QUIET )) && return 0 (( QUIET )) && return 0
local mesg=$1; shift local mesg=$1; shift
printf "${RED} ->${ALL_OFF}${BOLD}${RED} ${mesg}${ALL_OFF}\n" "$@" >&2 printf "${RED}==>${ALL_OFF}${BOLD}${RED} ${mesg}${ALL_OFF}\n" "$@" >&2
} }
function get_full_version { function get_full_version {
@ -75,27 +102,44 @@ function debian_control {
local install_size="$(du --block-size=1K --summarize ${pkgdir} | cut -d $'\t' -f 1)" local install_size="$(du --block-size=1K --summarize ${pkgdir} | cut -d $'\t' -f 1)"
local fv="$(get_full_version)" local fv="$(get_full_version)"
cat << EOF | envsubst echo "Package: ${pkgname}"
Package: ${pkgname} echo "Version: ${fv}"
Version: ${fv} echo "Architecture: ${arch}"
Architecture: all echo "Maintainer: ${maintainer}"
Maintainer: ${maintainer} echo "Installed-Size: ${install_size}"
Installed-Size: ${install_size} echo "Homepage: ${url}"
Description: ${pkgdesc}
EOF [[ -n "${section:=misc}" ]] && echo "Section: ${section}"
[[ -n "${priority:=optional}" ]] && echo "Priority: ${priority}"
echo "Description: ${pkgdesc}"
} }
function generate_control {
msg "Generating control info..."
mkdir -p "${pkgdir}/DEBIAN"
echo 2 > "${pkgdir}/DEBIAN/compat"
debian_control > "${pkgdir}/DEBIAN/control"
function debian_hooks_warpper { is_function "$1" && "$1" > "$2" && chmod +x "$2" || true; }
debian_hooks_warpper debian_preinst ${pkgdir}/DEBIAN/preinst
debian_hooks_warpper debian_postinst ${pkgdir}/DEBIAN/postinst
debian_hooks_warpper debian_prerm ${pkgdir}/DEBIAN/prerm
debian_hooks_warpper debian_postrm ${pkgdir}/DEBIAN/postrm
}
function generate_deb { function generate_deb {
msg "generating deb package..." msg "Generating deb package..."
local tmpdir="$(mktemp --directory)" local tmpdir="$(mktemp --directory)"
local data_tgz="${tmpdir}/data.tar.gz" local data_tgz="${tmpdir}/data.tar.gz"
local control_tgz="${tmpdir}/control.tar.gz" local control_tgz="${tmpdir}/control.tar.gz"
local debian_binary="${tmpdir}/debian-binary" local debian_binary="${tmpdir}/debian-binary"
tar --exclude="./DEBIAN" -C "${pkgdir}" -cf "${data_tgz}" . tar --gzip --exclude="./DEBIAN" -C "${pkgdir}" -cf "${data_tgz}" .
tar -C "${pkgdir}/DEBIAN" -cf "${control_tgz}" . tar --gzip -C "${pkgdir}/DEBIAN" -cf "${control_tgz}" .
echo 2.0 > "${debian_binary}" echo 2.0 > "${debian_binary}"
@ -103,7 +147,12 @@ function generate_deb {
rm -rf "${tmpdir}" rm -rf "${tmpdir}"
msg2 "generated deb: %s" "$(get_deb_name)" msg2 "Generated deb: %s" "$(get_deb_name)"
}
function step_create_archive {
generate_control
generate_deb
} }
function url_type { function url_type {
@ -134,10 +183,12 @@ function create_soft_link {
if [[ ! -e "${src}" ]] ; then if [[ ! -e "${src}" ]] ; then
err "soft_link src %s not exist" "${src}" err "soft_link src %s not exist" "${src}"
return 1
fi fi
if [[ -e "${tgt}" ]] ; then if [[ -e "${tgt}" ]] ; then
err "soft_link tgt %s already exist" "${tgt}" err "soft_link tgt %s already exist" "${tgt}"
return 1
fi fi
ln --symbolic "${src}" "${tgt}" ln --symbolic "${src}" "${tgt}"
@ -154,17 +205,17 @@ function url_fragment {
# $1 is relative path to file # $1 is relative path to file
# $2 is url/(relative path to materials) # $2 is url/(relative path to materials)
function retrive_source_single { function retrieve_source_single {
local file_name="$1" local file_name="$1"
local url="$2" local url="$2"
case "$(url_type "${url}")" in case "$(url_type "${url}")" in
"git") "git")
if [[ -d "${file_name}" ]]; then if [[ -d "${file_name}" ]]; then
msg2 "updating ${file_name} from ${url} with git..." msg2 "Updating ${file_name} from ${url} with git..."
git --git-dir="${workspace}/${file_name}" fetch --all git --git-dir="${workspace}/${file_name}" fetch --all
else else
msg2 "cloning ${file_name} from ${url} with git..." msg2 "Cloning ${file_name} from ${url} with git..."
local git_source="${url##git+}" local git_source="${url##git+}"
git_source="${git_source%%#*}" git_source="${git_source%%#*}"
git clone --mirror "${git_source}" "${workspace}/${file_name}" git clone --mirror "${git_source}" "${workspace}/${file_name}"
@ -174,21 +225,21 @@ function retrive_source_single {
if (( ! OVERRIDE_SOURCE )) && [[ -f "${workspace}/${file_name}" ]] ; then if (( ! OVERRIDE_SOURCE )) && [[ -f "${workspace}/${file_name}" ]] ; then
msg2 "${file_name} already exists, skip download" msg2 "${file_name} already exists, skip download"
else else
msg2 "retriving ${file_name} from ${url} with curl..." msg2 "Retrieving ${file_name} from ${url} with curl..."
curl --location "${url}" --output "${workspace}/${file_name}" curl --location "${url}" --output "${workspace}/${file_name}"
fi fi
;; ;;
"file") "file")
if [[ -e "${workspace}/${url}" ]] ; then if [[ -e "${workspace}/${url}" ]] ; then
msg2 "found local file: ${url}" msg2 "Found local file: ${url}"
else else
err "local file not found: ${url}" err "Local file not found: ${url}"
err "Aborting..." err "Aborting..."
exit 1 exit 1
fi fi
;; ;;
*) *)
err "retriving url as type ${url_type} not supported" err "Retrieving url as type ${url_type} not supported"
err "Aborting..." err "Aborting..."
exit 1 exit 1
esac esac
@ -210,7 +261,7 @@ function extract_source_single {
if [[ -n "${frag}" ]] ; then if [[ -n "${frag}" ]] ; then
case "${frag%%=*}" in case "${frag%%=*}" in
"branch") "branch")
ref="refs/heads/${frag##*=}" ref="refs/remotes/origin/${frag##*=}"
;; ;;
"tag") "tag")
ref="refs/tags/${frag##*=}" ref="refs/tags/${frag##*=}"
@ -225,7 +276,7 @@ function extract_source_single {
esac esac
fi fi
msg2 "extracting git ${workspace}/${file_name} with reference ${ref}" msg2 "Extracting git ${workspace}/${file_name} with reference ${ref}"
git clone --shared "${workspace}/${file_name}" "${srcdir}/${file_name}" git clone --shared "${workspace}/${file_name}" "${srcdir}/${file_name}"
git -C "${srcdir}/${file_name}" switch --force-create makedeb --no-track "${ref}" git -C "${srcdir}/${file_name}" switch --force-create makedeb --no-track "${ref}"
;; ;;
@ -257,11 +308,11 @@ function decompress_source_file {
*.zip) *.zip)
cmd="unzip" ;; cmd="unzip" ;;
*) *)
msg2 "no need to decompress, skip %s" "${file}" msg2 "No need to decompress, skip %s" "${file}"
return return
esac esac
msg2 "decompressing %s with %s" "${file}" "${cmd}" msg2 "Decompressing %s with %s" "${file}" "${cmd}"
local res=0 local res=0
case "$cmd" in case "$cmd" in
"tar") "tar")
@ -319,24 +370,24 @@ function check_source_validation {
done done
} }
function clean_dir { function step_clean_dir {
msg "cleaning \$srcdir and \$pkgdir..." msg "Cleaning \$srcdir and \$pkgdir..."
rm -rf "${srcdir}" "${pkgdir}" rm -rf "${srcdir}" "${pkgdir}"
mkdir -p "${srcdir}" "${pkgdir}" mkdir -p "${srcdir}" "${pkgdir}"
} }
function retrieve_source { function step_retrieve_source {
msg "retrieving source..." msg "Retrieving source..."
for s in "${source[@]}"; do for s in "${source[@]}"; do
file_name="${s%%::*}" file_name="${s%%::*}"
url="${s##*::}" url="${s##*::}"
retrive_source_single "${file_name}" "${url}" retrieve_source_single "${file_name}" "${url}"
done done
} }
function extract_source { function step_extract_source {
msg "extracting source..." msg "Extracting source..."
for s in "${source[@]}"; do for s in "${source[@]}"; do
file_name="${s%%::*}" file_name="${s%%::*}"
url="${s##*::}" url="${s##*::}"
@ -345,12 +396,12 @@ function extract_source {
done done
} }
function update_pkgver { function step_update_pkgver {
if ! is_function pkgver; then if ! is_function pkgver; then
return return
fi fi
msg "updating pkgver..." msg "Updating pkgver..."
newpkgver="$(run_function_safe pkgver)" newpkgver="$(run_function_safe pkgver)"
if [[ "${newpkgver}" != "${pkgver:-}" ]] ; then if [[ "${newpkgver}" != "${pkgver:-}" ]] ; then
mapfile -t bfcontent < "${buildfile}" mapfile -t bfcontent < "${buildfile}"
@ -367,33 +418,41 @@ function update_pkgver {
source "${buildfile}" source "${buildfile}"
msg2 "updated version: ${newpkgver}" msg2 "Updated version: ${newpkgver}"
fi fi
pkgver="${newpkgver}" pkgver="${newpkgver}"
} }
function generate_control {
msg "generating control info..."
mkdir -p "${pkgdir}/DEBIAN"
echo 2 > "${pkgdir}/DEBIAN/compat"
debian_control > "${pkgdir}/DEBIAN/control"
function debian_hooks_warpper { is_function "$1" && "$1" > "$2" && chmod +x "$2" || true; }
debian_hooks_warpper debian_preinst ${pkgdir}/DEBIAN/preinst
debian_hooks_warpper debian_postinst ${pkgdir}/DEBIAN/postinst
debian_hooks_warpper debian_prerm ${pkgdir}/DEBIAN/prerm
debian_hooks_warpper debian_postrm ${pkgdir}/DEBIAN/postrm
}
function run_function { function run_function {
if is_function "$1" ; then if is_function "$1" ; then
msg "run function: $1" msg "Run function: $1"
run_function_safe "$1" run_function_safe "$1"
fi fi
} }
function disable_stdout {
exec {_BACKUP_STDOUT}>&1
exec 1>/dev/null
}
function enable_stdout {
exec 1>&"$_BACKUP_STDOUT"
}
function show_help {
echo "$0 [OPTIONS]"
echo " -Q quiet, disable log"
echo " -f|--force don't check if package already exists, will"
echo " --nobuild retrieve source, update pkgver and stop"
echo " override the existed package"
echo " --noextract use the current srcdir to build package, skip"
echo " those retrieve source steps"
echo " --noarchive retrieve and build, but don't package to .deb"
echo " --packagelist show file to be generated by current DEBBUILD"
echo " --is-dynamic-pkgver exit with 0 if DEBBUILD will update pkgver later"
echo " -h|--help show this message"
}
## ##
## Here start the build logic ## Here start the build logic
@ -401,11 +460,36 @@ function run_function {
while (( "$#" >= 1 )); do while (( "$#" >= 1 )); do
case "$1" in case "$1" in
-F) FAKE_PACKAGE=1 ;; -F) _IN_FAKEROOT=1 ;;
-OS) OVERRIDE_SOURCE=1 ;; -Q) QUIET=1 ;;
-STF) SHOW_TARGET_FILE=1 ; QUIET=1 ;; -f|--force) _STEP_CHCECK_PACKAGE_EXISTS=0 ;;
-Q) QUIET=1 ;; --noextract)
*) err "Unkown option $1"; break ;; _STEP_CLEAN=0
_STEP_RETRIEVE_SOURCE=0
_STEP_EXTRACT_SOURCE=0
_STEP_UPDATE_PKGVER=0
;;
--nobuild)
_STEP_CHCECK_PACKAGE_EXISTS=0
_STEP_BUILD=0
_STEP_PACKAGE=0
_STEP_CREATE_ARCHIVE=0
_STOP_AFTER_UPDATE_PKGVER=1
;;
--noarchive)
_STEP_CHCECK_PACKAGE_EXISTS=0
_STEP_CREATE_ARCHIVE=0
_STOP_AFTER_BUILD=1
;;
--packagelist) PACKAGELIST=1 ;;
--is-dynamic-pkgver) IS_DYNAMICV_PKGVER=1 ;;
-h|--help) show_help ; exit 0;;
*) err "Unkown option $1"
err "Use $0 --help for help"
exit 1 ;;
esac esac
shift shift
done done
@ -413,39 +497,75 @@ done
source "${buildfile}" source "${buildfile}"
if (( ! FAKE_PACKAGE )) ; then if (( PACKAGELIST )) ; then
if (( SHOW_TARGET_FILE )) && ! is_function pkgver ; then echo "$(get_deb_name)"
echo "$(get_deb_name)" exit 0
exit 0 fi
fi
if (( IS_DYNAMICV_PKGVER )) ; then
if is_function pkgver ; then
exit 0
else
exit 4
fi
fi
if (( QUIET )) ; then
disable_stdout
fi
if (( ! _IN_FAKEROOT )) ; then
check_source_validation check_source_validation
clean_dir if (( _STEP_CLEAN )) ; then
step_clean_dir
retrieve_source
extract_source
update_pkgver
if (( SHOW_TARGET_FILE )) && is_function pkgver ; then
echo "$(get_deb_name)"
exit 0
fi fi
run_function build if (( _STEP_RETRIEVE_SOURCE )) ; then
step_retrieve_source
fi
# recursive call self to run rest task in fakeroot if (( _STEP_EXTRACT_SOURCE )) ; then
msg "entering fakeroot environment..." step_extract_source
fakeroot -- bash -$- "${BASH_SOURCE[0]}" -F "${ARGLIST[@]}" || exit $? fi
msg "leaving fakeroot environment..."
msg "builds has done" if (( _STEP_UPDATE_PKGVER )) ; then
step_update_pkgver
(( _STOP_AFTER_UPDATE_PKGVER )) && msg "Sources are ready."
fi
# Check if the package already exists
if (( _STEP_CHCECK_PACKAGE_EXISTS )) ; then
if [[ -f "$(get_deb_name)" ]] ; then
warn "%s %s" \
"The package $(get_deb_name) already exists, skipping build." \
"(use -f to force re-build)"
exit 0
fi
fi
if (( _STEP_BUILD )) ; then
run_function build
(( _STOP_AFTER_BUILD )) && msg "Package directory is ready."
fi
if (( _STEP_PACKAGE || _STEP_CREATE_ARCHIVE )) ; then
# recursive call self to run rest task in fakeroot
msg "Entering fakeroot environment..."
fakeroot -- bash -$- "${BASH_SOURCE[0]}" -F "${_ARGLIST[@]}" || exit $?
msg "Leaving fakeroot environment..."
fi
else else
run_function package if (( _STEP_PACKAGE )) ; then
run_function package
fi
generate_control if (( _STEP_CREATE_ARCHIVE )) ; then
step_create_archive
generate_deb msg "Finish making: $(get_deb_name) $(date)"
fi
fi
if (( QUIET )) ; then
enable_stdout
fi fi

Binary file not shown.

Binary file not shown.

View file

@ -1,5 +0,0 @@
#!/usr/bin/env bash
ls -l
fakeroot
ls -l