I'm getting a "mount point does not exist" for packaging sqlite3 and I'm not sure what it means. I assume this has something to do with it fetching the .tar.gz file or with extracting it? But I'm not sure exactly what to do. Below is the package.yml and the error:
name : sqlite3
version : 3.40.0
release : 44
source :
- https://www.sqlite.org/2022/sqlite-autoconf-3400000.tar.gz : 7ee8f02b21edb4489df5082b5cf5b7ef47bcebcdb0e209bf14240db69633c878
license : Public-Domain
component : system.base
optimize : speed
emul32 : yes
summary : Self contained SQL package
description: |
The SQLite package is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
setup : |
ex_opts=""
if [[ -z "${EMUL32BUILD}" ]]; then
ex_opts="--enable-readline"
fi
%configure --disable-static \
--enable-dynamic-extensions \
--enable-fts5 \
--enable-threadsafe \
$ex_opts \
CFLAGS="$CFLAGS \
-DSQLITE_ENABLE_FTS3 \
-DSQLITE_ENABLE_FTS4 \
-DSQLITE_ENABLE_FTS5 \
-DSQLITE_ENABLE_JSON1 \
-DSQLITE_ENABLE_COLUMN_METADATA \
-DSQLITE_ENABLE_UNLOCK_NOTIFY \
-DSQLITE_ENABLE_DBSTAT_VTAB \
-DSQLITE_SECURE_DELETE \
-DSQLITE_ENABLE_FTS3_PARENTHESIS"
build : |
%make
install : |
%make_install
install -D -m00644 sqlite3.1 $installdir/usr/share/man/man1/sqlite3.1
Error:
mount: /var/cache/solbuild/unstable-x86_64/sqlite3/union/home/build/YPKG/sources/sqlite-autoconf-3400000.tar.gz: mount point does not exist.
dmesg(1) may have more information after failed mount system call.
🕱  Failed to build packages
make[1]: *** [../Makefile.common:25: build] Error 1
make[1]: Leaving directory '/home/icosahunter/Repos/Packaging/sqlite3'
'''