#!/bin/bash # Part of the SMLinux distribution # http://git.pktsurf.in/smlinux # # /bin/bldpkg version 0.102 # Bash script to build SMLinux-specific packages # # Copyright (c) 2022-2023 PktSurf # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ############ set -e err() { printf "**ERROR**\n$@\n" exit 1 } info() { printf "[INFO] $@\n" } warn() { printf "[WARNING]\n$@\n" } # Determine whether we are using bash version 4 and later. If not, exit. if [[ -z $BASH_VERSINFO ]] ; then err "Is this really a GNU bash shell?" elif ((BASH_VERSINFO[0] < 4)) ; then err "Bldpkg requires a minimum of GNU bash shell version 4 to run" fi # Time when the build commenced. Note: elapsed time is logged by the runtime function way below. # This output goes into package build summary. commencedate=$(date '+%a, %d %b %Y, %T') # Function to generate help message help() { cat << EOF Bash script for building SMLinux-compatible packages from source. Any option used as an argument with this script overrides the corresponding option, if present, in /etc/bldpkg.conf or '$HOME/.bldpkg.conf' If no arguments are provided, this script attempts to first look for a build file with a .SMBuild extension that matches the name of the parent directory, sources that .SMBuild file and starts the build. For example, if the package source directory is $HOME/smlinux/alsa-lib, this script will look and source from alsa-lib.SMBuild and build alsa-lib package # pwd /home/user/smlinux/alsa-lib # ls alsa-lib.SMBuild # bldpkg Building package 'alsa-lib' version '1.x'... ...build output... Usage: -a Switch mode to autobuild. Default is to build individual packages. Requires sections variable in bldpkg.conf to be defined -d Produce a package with debug symbols preserved, i.e., don't strip resulting ELF objects. Uses -g3 by default -e Extract the package installer file in the user's PWD if the build completes successfully -f Name of an alternate build file to source build variables. Should be compatible with standard SMLinux package build file format -g Generate SHA512 checksums of all tarballs and patches in the current directory, insert them into the package build file and exit -h Show this help message -j Provide a number of jobs to be run simultaneously -o Copy this file into the package installer rather than the default one the build was initiated from. Usually the default one is either .SMBuild or the one supplied using -f but in certain exceptional cases a different file is required to be copied into the package installer. Do note that this file will also undergo validation -r Resume the build by skipping all commands in prepbuilddir and execute build() function. Presumes that the package was completely extracted in the build directory, and patches, if any, were applied and executes stuff inside build(). -s Display build summary. A summary is produced whenever a build is either interrupted, exits cleanly or aborts due to a build error -t Build inside tmpfs directory -v Enable verbose compile -x Invoke bash shell command trace mode. This one isn't akin to running bash -x