diff options
| author | emmett1 <emmett1.2iligrams@protonmail.com> | 2025-03-12 04:01:18 +0100 |
|---|---|---|
| committer | emmett1 <emmett1.2iligrams@protonmail.com> | 2025-03-12 04:01:18 +0100 |
| commit | ddd8e1a8fab2ac39396282a7c09ddf6eca219613 (patch) | |
| tree | 12796519575126d60e06d02e9eab68856229cf58 /repos/extra/sqlite | |
| parent | b5a8a6c29e40f786ceb808c0b95f01c4251111d1 (diff) | |
| download | alicelinux-ddd8e1a8fab2ac39396282a7c09ddf6eca219613.tar.gz alicelinux-ddd8e1a8fab2ac39396282a7c09ddf6eca219613.zip | |
clang repos updated
Diffstat (limited to 'repos/extra/sqlite')
| -rwxr-xr-x | repos/extra/sqlite/.checksum | 1 | ||||
| -rwxr-xr-x | repos/extra/sqlite/.files | 16 | ||||
| -rwxr-xr-x | repos/extra/sqlite/abuild | 26 |
3 files changed, 0 insertions, 43 deletions
diff --git a/repos/extra/sqlite/.checksum b/repos/extra/sqlite/.checksum deleted file mode 100755 index 80311dc9..00000000 --- a/repos/extra/sqlite/.checksum +++ /dev/null @@ -1 +0,0 @@ -ca64591d34b506559d359c0ce9da9e63b6295ac281b143103c14a6a68b22bd93 sqlite-autoconf-3490000.tar.gz diff --git a/repos/extra/sqlite/.files b/repos/extra/sqlite/.files deleted file mode 100755 index 906d5350..00000000 --- a/repos/extra/sqlite/.files +++ /dev/null @@ -1,16 +0,0 @@ -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.0 -lrwxrwxrwx root/root usr/lib/libsqlite3.so.0 -> libsqlite3.so.3.49.0 --rwxr-xr-x root/root usr/lib/libsqlite3.so.3.49.0 -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 deleted file mode 100755 index a3e92af1..00000000 --- a/repos/extra/sqlite/abuild +++ /dev/null @@ -1,26 +0,0 @@ -name=sqlite -version=3.49.0 -_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 -} |