diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:32:36 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:32:36 +0000 |
| commit | 93a354611e38a6949add5c2e5ccc93ef79b9755f (patch) | |
| tree | 7fee41752b1047d74c59f8ee046cd62735e7e934 /sqlite | |
| parent | 35912580b66e9439f91ea441938828ad8aa33b0d (diff) | |
| download | alicelinux-93a354611e38a6949add5c2e5ccc93ef79b9755f.tar.gz alicelinux-93a354611e38a6949add5c2e5ccc93ef79b9755f.zip | |
Woodpecker CI 5171f1fdd74e7137c305450dd69a29fa5be4143f [SKIP CI]
Diffstat (limited to 'sqlite')
| -rw-r--r-- | sqlite/.checksum | 1 | ||||
| -rw-r--r-- | sqlite/.files | 16 | ||||
| -rw-r--r-- | sqlite/abuild | 26 |
3 files changed, 43 insertions, 0 deletions
diff --git a/sqlite/.checksum b/sqlite/.checksum new file mode 100644 index 00000000..5c06fbdc --- /dev/null +++ b/sqlite/.checksum @@ -0,0 +1 @@ +96e071dc4f964311882334e927f017d8383915b1b140adcf308957dff213aa8c sqlite-autoconf-3490200.tar.gz diff --git a/sqlite/.files b/sqlite/.files new file mode 100644 index 00000000..73d4cb16 --- /dev/null +++ b/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.2 +lrwxrwxrwx root/root usr/lib/libsqlite3.so.0 -> libsqlite3.so.3.49.2 +-rwxr-xr-x root/root usr/lib/libsqlite3.so.3.49.2 +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/sqlite/abuild b/sqlite/abuild new file mode 100644 index 00000000..0b76658a --- /dev/null +++ b/sqlite/abuild @@ -0,0 +1,26 @@ +name=sqlite +version=3.49.2 +_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 +} |