Sat, 08 Nov 2025 23:45:19 +0100
implement simple versions of the clone functions
partially resolves #757 except for the tests
#!/bin/sh if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ] ; then echo "Illegal use." exit 1 fi version="$1" libdir="$2" includedir="$3" cat << EOF > "$libdir/pkgconfig/ucx.pc" libdir=$libdir includedir=$includedir Name: ucx Description: UAP Common Extensions Version: $version Libs: -L\${libdir} -lucx Cflags: -I\${includedir} EOF