2022-03-20 13:19:37 +01:00
#!/usr/bin/bash
# JOBoRun : Jwm OpenBox Obarun RUNit
2022-04-29 21:55:53 +02:00
# Maintainer : Joe Bo Run <joborun@disroot.org>
2024-08-22 17:58:58 +02:00
# PkgSource : url="https://git.disroot.org/joborun-pkg/jobcore/src/branch/main/$pkgname"
2022-04-29 21:55:53 +02:00
# Website : https://pozol.eu
2022-03-20 13:19:37 +01:00
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgbase="sqlite"
pkgname=('sqlite' 'sqlite-tcl' 'sqlite-analyzer' 'lemon' 'sqlite-doc')
2024-08-14 02:18:47 +02:00
_srcver=3460100
2023-11-27 02:38:07 +01:00
_docver=${_srcver}
2024-08-14 02:18:47 +02:00
pkgver=3.46.1
2024-01-17 12:36:40 +01:00
pkgrel=01
2022-03-20 13:19:37 +01:00
pkgdesc="A C library that implements an SQL database engine"
url="https://www.sqlite.org/"
makedepends=('tcl' 'readline' 'zlib')
2022-08-13 01:49:04 +02:00
#options=('!emptydirs' 'debug') ## uncomment this to produce the debug pkg
options=('!emptydirs')
2024-01-17 12:36:40 +01:00
source=(https://www.sqlite.org/2024/sqlite-src-${_srcver}.zip
https://www.sqlite.org/2024/sqlite-doc-${_docver}.zip
2022-03-20 13:19:37 +01:00
sqlite-lemon-system-template.patch
license.txt)
# upstream now switched to sha3sums - currently not supported by makepkg
prepare() {
cd sqlite-src-$_srcver
# patch taken from Fedora
# https://src.fedoraproject.org/rpms/sqlite/blob/master/f/sqlite.spec
patch -Np1 -i ../sqlite-lemon-system-template.patch
#autoreconf -vfi
}
build() {
2023-09-11 22:26:04 +02:00
# this uses malloc_usable_size, which is incompatible with fortification level 3
export CFLAGS="${CFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
export CXXFLAGS="${CXXFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
2023-11-27 02:38:07 +01:00
2022-03-20 13:19:37 +01:00
export CPPFLAGS="$CPPFLAGS \
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY \
-DSQLITE_ENABLE_DBSTAT_VTAB=1 \
-DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
2022-12-03 13:04:17 +01:00
-DSQLITE_ENABLE_FTS3_PARENTHESIS \
2022-03-20 13:19:37 +01:00
-DSQLITE_SECURE_DELETE \
-DSQLITE_ENABLE_STMTVTAB \
2023-11-27 02:38:07 +01:00
-DSQLITE_ENABLE_STAT4 \
2022-03-20 13:19:37 +01:00
-DSQLITE_MAX_VARIABLE_NUMBER=250000 \
-DSQLITE_MAX_EXPR_DEPTH=10000 \
-DSQLITE_ENABLE_MATH_FUNCTIONS"
# build sqlite
cd sqlite-src-$_srcver
./configure --prefix=/usr \
--disable-static \
--enable-fts3 \
--enable-fts4 \
--enable-fts5 \
--enable-rtree \
TCLLIBDIR=/usr/lib/sqlite$pkgver
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
# build additional tools
make showdb showjournal showstat4 showwal sqldiff sqlite3_analyzer
}
package_sqlite() {
pkgdesc="A C library that implements an SQL database engine"
2023-08-24 23:40:43 +02:00
depends=('readline' 'zlib' 'glibc')
2022-08-13 01:49:04 +02:00
provides=("sqlite3=$pkgver" 'libsqlite3.so')
2022-03-20 13:19:37 +01:00
replaces=("sqlite3")
cd sqlite-src-$_srcver
make DESTDIR="${pkgdir}" install
install -m755 showdb showjournal showstat4 showwal sqldiff "${pkgdir}"/usr/bin/
# install manpage
install -m755 -d "${pkgdir}"/usr/share/man/man1
install -m644 sqlite3.1 "${pkgdir}"/usr/share/man/man1/
2024-01-17 12:36:40 +01:00
# license
install -D -m644 "${srcdir}"/license.txt "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
2022-03-20 13:19:37 +01:00
# split out tcl extension
mkdir "$srcdir"/tcl
mv "$pkgdir"/usr/lib/sqlite* "$srcdir"/tcl
}
package_sqlite-tcl() {
pkgdesc="sqlite Tcl Extension Architecture (TEA)"
2023-08-24 23:40:43 +02:00
depends=('sqlite' 'glibc')
2022-03-20 13:19:37 +01:00
provides=("sqlite3-tcl=$pkgver")
replaces=("sqlite3-tcl")
install -m755 -d "${pkgdir}"/usr/lib
mv "$srcdir"/tcl/* "${pkgdir}"/usr/lib
# install manpage
install -m755 -d "${pkgdir}"/usr/share/man/mann
install -m644 "${srcdir}"/sqlite-src-$_srcver/autoconf/tea/doc/sqlite3.n "${pkgdir}"/usr/share/man/mann/
2024-01-17 12:36:40 +01:00
# license
install -D -m644 "${srcdir}"/license.txt "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
2022-03-20 13:19:37 +01:00
}
package_sqlite-analyzer() {
pkgdesc="An analysis program for sqlite3 database files"
2023-08-24 23:40:43 +02:00
depends=('sqlite' 'tcl' 'glibc')
2022-03-20 13:19:37 +01:00
cd sqlite-src-$_srcver
install -m755 -d "${pkgdir}"/usr/bin
install -m755 sqlite3_analyzer "${pkgdir}"/usr/bin/
2024-01-17 12:36:40 +01:00
# license
install -D -m644 "${srcdir}"/license.txt "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
2022-03-20 13:19:37 +01:00
}
package_lemon() {
# https://www.sqlite.org/lemon.html
pkgdesc="A parser generator"
depends=('glibc')
cd sqlite-src-$_srcver
# ELF file ('usr/bin/lemon') lacks FULL RELRO, check LDFLAGS. - no fix found so far
install -Dm755 lemon ${pkgdir}/usr/bin/lemon
install -Dm644 lempar.c ${pkgdir}/usr/share/lemon/lempar.c
mkdir -p "${pkgdir}"/usr/share/doc/${pkgname}
cp ../sqlite-doc-${_docver}/lemon.html "${pkgdir}"/usr/share/doc/${pkgname}/
2024-01-17 12:36:40 +01:00
# license
install -D -m644 "${srcdir}"/license.txt "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
2022-03-20 13:19:37 +01:00
}
package_sqlite-doc() {
pkgdesc="most of the static HTML files that comprise this website, including all of the SQL Syntax and the C/C++ interface specs and other miscellaneous documentation"
#arch=('any') - not yet supported
provides=("sqlite3-doc=$pkgver")
replaces=("sqlite3-doc")
cd sqlite-doc-${_docver}
mkdir -p "${pkgdir}"/usr/share/doc/${pkgbase}
cp -R * "${pkgdir}"/usr/share/doc/${pkgbase}/
2024-01-17 12:36:40 +01:00
# license
install -D -m644 "${srcdir}"/license.txt "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
2022-03-20 13:19:37 +01:00
rm "${pkgdir}"/usr/share/doc/${pkgbase}/lemon.html
}
2023-03-11 20:41:39 +01:00
#---- arch license gpg-key & sha256sums ----
arch=(x86_64)
2022-03-20 13:19:37 +01:00
2024-01-17 12:36:40 +01:00
license=('LicenseRef-Sqlite')
2022-03-20 13:19:37 +01:00
2024-08-14 02:18:47 +02:00
sha256sums=(def3fc292eb9ecc444f6c1950e5c79d8462ed5e7b3d605fd6152d145e1d5abb4 # sqlite-src-3460100.zip
e969131f93ca79fbc64d57724a1035735881555a52600dbe69c69eab72c9fcd1 # sqlite-doc-3460100.zip
2022-11-17 09:21:50 +01:00
55746d93b0df4b349c4aa4f09535746dac3530f9fd6de241c9f38e2c92e8ee97 # sqlite-lemon-system-template.patch
2022-03-28 00:07:19 +02:00
4e57d9ac979f1c9872e69799c2597eeef4c6ce7224f3ede0bf9dc8d217b1e65d) # license.txt
2022-08-01 23:55:14 +02:00
2024-08-14 02:18:47 +02:00
## 799aae3a10a4ba4416515fd228f65aa74c1b951365f2865979e07d846082bea6 lemon-3.46.1-01-x86_64.pkg.tar.lz
## 68e0c8b52320914dbec8aca1e23af2c2d40d2fe7106a006bce0b0b7ecafcb461 sqlite-3.46.1-01-x86_64.pkg.tar.lz
## 63fba17d65e59bcd39fd0121203f91e8fdf2fbdbd3bdd01b3c65fd625d8e9317 sqlite-analyzer-3.46.1-01-x86_64.pkg.tar.lz
## 3ad0c12c399d24092e6fdfd055ccc40c1c5f049129fcdc5f87d53dee3ffdb146 sqlite-doc-3.46.1-01-x86_64.pkg.tar.lz
## e361515a01ceb289155c954f1bd96bdc81684f87560df4684016b6ec98d7d4d0 sqlite-tcl-3.46.1-01-x86_64.pkg.tar.lz