diff --git a/bldpkg b/bldpkg index 06138d5..552a98b 100755 --- a/bldpkg +++ b/bldpkg @@ -22,6 +22,12 @@ # TODO # -> Uncomment entirety of the code where compilers are to be hard-validated and improve C code # in the test files and also add suitable bldpkg.conf switches for it +# -> Give a warning when more than two directories, a source and a staging directory +# not belonging to the current build are present inside tmpfs +# -> Warn user when /share/icons or /share/applications directory is present but +# a doinst.sh file that should update the icon caching is absent in the source directory +# -> Warn users if mkfinalpkg finds binaries and shared libraries that are already stripped +# prior to us stripping them manually ; a file count would be useful. # Begin subshell ( @@ -33,6 +39,14 @@ set -e # into package build summary. commencedate="$(date '+%a, %d %b %Y, %T')" +# Then source the configuration file holding all values +if [ -f /etc/bldpkg.conf ] ; then + source /etc/bldpkg.conf +else + echo "[ERROR] /etc/bldpkg.conf not found!" + exit 1 +fi + # Store the source directory path the build was initiated from srcdir="$PWD" @@ -40,9 +54,60 @@ srcdir="$PWD" srcdirpath="$(basename $srcdir)" buildfile="$srcdirpath.SMBuild" -debugmode() { +sourcebuildfile() { + if [ -f "$buildfile" ] ; then + source "$buildfile" + else + # We expect a filename as part of -f argument + echo "[ERROR] No build file to source from! If you used -f argument, make sure it is" + echo "[ERROR] the first argument pointing to a build file before any other argument." + exit 1 + fi +} + +setbuildfile() { + buildfile0="$OPTARG" + if [ ! -f "$OPTARG" ] ; then + echo "[ERROR] Build file $buildfile0 not found!" + exit 1 + fi + buildfile="$buildfile0" + sourcebuildfile +} + +# Function to invoke bash shell's -x mode for troubleshooting +tracemode() { set -x - source "$buildfile" + sourcebuildfile +} + +debugmode() { + debug=1 + sourcebuildfile +} + +autoextractmode() { + # Override extractprompt in bldpkg.conf + extractprompt=0 + autoextract=1 + sourcebuildfile +} + +displaysummary() { + # Override showsummary in bldpkg.conf + showsummary=1 + sourcebuildfile +} + +setcputhreads() { + cputhreads0="$OPTARG" + # Validate if the argument is a number. If not, throw an error and exit. + if ! echo "$cputhreads0" | egrep -q '^[0-9]+$' ; then + echo "[ERROR] Invalid CPU job number. Please try again." + exit 1 + fi + cputhreads="$cputhreads0" + sourcebuildfile } # Generate sha512sums in the build file @@ -75,54 +140,82 @@ genchecksum() { exit 0 } +# 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 -This script takes only one parameter. +If no arguments are provided, this script attempts to build a package +by matching the parent directory name with a build file that matches +that directory's name. + +For example, if the build directory is $HOME/smlinux/alsa-lib, this script will +look and source from alsa-lib.SMBuild and build alsa-lib package if the user +has cd'd to $HOME/smlinux/alsa-lib + +# pwd +/home/smlinux/alsa-lib + +# ls +alsa-lib.SMBuild + +# bldpkg +Building package 'alsa-lib' version '1.x' build '1sml'... +...build output... Usage: - -d : Invoke bash shell debug mode - -h : Show this message + -d : Produce a package with debug symbols preserved - -g : Generate SHA512 checksums of all tarballs and patches and insert them into the package build file + -e : Extract the package installer file in the user's PWD if the build + completes successfully. + + -f : Alternate build file to source build variables. + NOTE: This argument, if used, must come before any other argument + + -g : Generate SHA512 checksums of all tarballs and patches and insert them + into the package build file + + -h : Show this help message + + -j : Provide a number of jobs to be run simultaneously + + -s : Display build summary. A summary is produced whenever a build is either + interrupted, exits cleanly or aborts due to a build error + + -x : Invoke bash shell command trace mode. This one isn't akin to running + bash -x