diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /libs/sqlite/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/sqlite/MAKEPKG')
| -rw-r--r-- | libs/sqlite/MAKEPKG | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libs/sqlite/MAKEPKG b/libs/sqlite/MAKEPKG new file mode 100644 index 0000000..2db78b3 --- /dev/null +++ b/libs/sqlite/MAKEPKG @@ -0,0 +1,38 @@ +#!/bin/mkpkg +# description: SQL database engine +# url: https://www.sqlite3.org/ + +name=sqlite +version=3.53.4 +_amalgamation=3530400 +release=1 +depends=(readline ncurses zlib) +source=(https://www.sqlite.org/2026/sqlite-autoconf-$_amalgamation.tar.gz) +sha256sums=( + "0e9483900e92cd5de8fd48d16bf9200145a61f7fd5be542a5ac81d8a9516eb9c" +) + +build() { + cd $name-autoconf-$_amalgamation + + ./configure \ + --prefix=/usr \ + --with-readline-cflags="-I/include" \ + --with-readline-ldflags="-L/lib -lreadline -lncurses" \ + --fts3 \ + --fts4 \ + --fts5 + + + make + make DESTDIR=$PKG install + + rm -f $PKG/usr/lib/*.la +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
