diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-06-13 00:25:03 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-06-13 00:25:03 +0800 |
| commit | 239ced844ea434e623686094af3de168f90e4391 (patch) | |
| tree | 541d2c575f3b3832ca1a3087bde3f65dc74a8f89 /repos/extra/sqlite | |
| parent | 3f80bb67166389b3acabf8f024ee1ad1a4364c1f (diff) | |
| download | alicelinux-239ced844ea434e623686094af3de168f90e4391.tar.gz alicelinux-239ced844ea434e623686094af3de168f90e4391.zip | |
repos updated
Diffstat (limited to 'repos/extra/sqlite')
| -rw-r--r-- | repos/extra/sqlite/abuild | 19 | ||||
| -rw-r--r-- | repos/extra/sqlite/build | 12 | ||||
| -rw-r--r-- | repos/extra/sqlite/info | 4 |
3 files changed, 19 insertions, 16 deletions
diff --git a/repos/extra/sqlite/abuild b/repos/extra/sqlite/abuild new file mode 100644 index 00000000..ca866328 --- /dev/null +++ b/repos/extra/sqlite/abuild @@ -0,0 +1,19 @@ +name=sqlite +version=3420000 +release=1 +source="https://sqlite.org/2023/$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 +} diff --git a/repos/extra/sqlite/build b/repos/extra/sqlite/build deleted file mode 100644 index 378c81fb..00000000 --- a/repos/extra/sqlite/build +++ /dev/null @@ -1,12 +0,0 @@ -./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 diff --git a/repos/extra/sqlite/info b/repos/extra/sqlite/info deleted file mode 100644 index 63a96c89..00000000 --- a/repos/extra/sqlite/info +++ /dev/null @@ -1,4 +0,0 @@ -name=sqlite -version=3420000 -release=1 -source="https://sqlite.org/2023/$name-autoconf-$version.tar.gz" |