diff options
Diffstat (limited to 'repos/extra/sqlite')
| -rw-r--r-- | repos/extra/sqlite/.checksum | 1 | ||||
| -rw-r--r-- | repos/extra/sqlite/.files | 16 | ||||
| -rw-r--r-- | repos/extra/sqlite/abuild | 26 |
3 files changed, 43 insertions, 0 deletions
diff --git a/repos/extra/sqlite/.checksum b/repos/extra/sqlite/.checksum new file mode 100644 index 00000000..762e993c --- /dev/null +++ b/repos/extra/sqlite/.checksum @@ -0,0 +1 @@ +2b4a9b75c9e6c369113fb0d1c9ff4158138e22e01820b32cfbc835b69b98dd28 sqlite-autoconf-3490100.tar.gz diff --git a/repos/extra/sqlite/.files b/repos/extra/sqlite/.files new file mode 100644 index 00000000..cb6b4866 --- /dev/null +++ b/repos/extra/sqlite/.files @@ -0,0 +1,16 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/sqlite3 +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/sqlite3.h +-rw-r--r-- root/root usr/include/sqlite3ext.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libsqlite3.so -> libsqlite3.so.3.49.1 +lrwxrwxrwx root/root usr/lib/libsqlite3.so.0 -> libsqlite3.so.3.49.1 +-rwxr-xr-x root/root usr/lib/libsqlite3.so.3.49.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/sqlite3.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/sqlite3.1.gz diff --git a/repos/extra/sqlite/abuild b/repos/extra/sqlite/abuild new file mode 100644 index 00000000..4c5ac3b5 --- /dev/null +++ b/repos/extra/sqlite/abuild @@ -0,0 +1,26 @@ +name=sqlite +version=3.49.1 +_v=${version%%.*} +_vv=${version#*.}; _vv=${_vv%.*} +_vvv=${version##*.} +case $_vvv in + ?) _vvv=0${_vvv};; +esac +_version=${_v}${_vv}${_vvv}00 +release=1 +source="https://sqlite.org/2025/$name-autoconf-$_version.tar.gz" + +build() { + ./configure \ + --prefix=/usr \ + --disable-static \ + --enable-fts4 \ + --enable-fts5 \ + CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1 \ + -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 \ + -DSQLITE_ENABLE_DBSTAT_VTAB=1 \ + -DSQLITE_SECURE_DELETE=1 \ + -DSQLITE_ENABLE_FTS3_TOKENIZER=1" + make + make install +} |