38
39
40
41
42
43
44
45
46
47
|
${MAKE:-make} install-binaries PKG_DIR='' || exit 1
rm -f "${PLATDIR}/vectclConfig.sh"
rm -f "${PLATDIR}"/*.a
) || exit 1
# Create metadata
../create_teapot "${PLATDIR}/teapot.txt" "vectcl" "${VERS}" "${SRCURL}" "${PLATFORM}" 'Tcl 8.6,TclOO' "Numeric array and linear algebra extension for Tcl. http://auriocus.github.io/VecTcl"
exit 0
|
>
|
38
39
40
41
42
43
44
45
46
47
48
|
${MAKE:-make} install-binaries PKG_DIR='' || exit 1
rm -f "${PLATDIR}/vectclConfig.sh"
rm -f "${PLATDIR}"/*.a
) || exit 1
# Create metadata
rm -f "${PLATDIR}/teapot.txt"
../create_teapot "${PLATDIR}/teapot.txt" "vectcl" "${VERS}" "${SRCURL}" "${PLATFORM}" 'Tcl 8.6,TclOO' "Numeric array and linear algebra extension for Tcl. http://auriocus.github.io/VecTcl"
exit 0
|