mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 23:14:37 +08:00
94 lines
3.3 KiB
Bash
94 lines
3.3 KiB
Bash
pkgbase="sqlite3"
|
|
pkgname=('sqlite3' 'sqlite3-tcl' 'sqlite3-doc')
|
|
_amalgamationver=3120100
|
|
_docver=${_amalgamationver}
|
|
pkgver=3.12.1
|
|
pkgrel=1
|
|
pkgdesc="A C library that implements an SQL database engine"
|
|
arch=('x86_64')
|
|
license=('custom:Public Domain')
|
|
url="http://www.sqlite.org/"
|
|
makedepends=('tcl' 'readline')
|
|
source=( # tarball containing the amalgamation for SQLite >= 3.7.5 together with a configure script and makefile for building it; includes now also the Tcl Extension Architecture (TEA)
|
|
https://www.sqlite.org/2016/sqlite-autoconf-$_amalgamationver.tar.gz
|
|
https://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
|
|
license.txt)
|
|
sha1sums=('fa1f3dbf6e2e8c6d14125b2eceda5b2e16a19f1f'
|
|
'5adad476e52a031bfb1cbc9c1426a5fb77e453a3'
|
|
'f34f6daa4ab3073d74e774aad21d66878cf26853')
|
|
|
|
build() {
|
|
export CFLAGS="$CFLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
|
-DSQLITE_ENABLE_UNLOCK_NOTIFY \
|
|
-DSQLITE_SECURE_DELETE \
|
|
-DSQLITE_ENABLE_DBSTAT_VTAB \
|
|
-DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
|
|
-DSQLITE_ENABLE_API_ARMOR"
|
|
|
|
# build sqlite
|
|
cd "$srcdir"/sqlite-autoconf-$_amalgamationver
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--disable-amalgamation \
|
|
--enable-fts3 \
|
|
--enable-fts4 \
|
|
--enable-fts5 \
|
|
--enable-rtree \
|
|
--enable-json1
|
|
make
|
|
|
|
# build the tcl extension
|
|
cd "$srcdir"/sqlite-autoconf-$_amalgamationver/tea
|
|
./configure --prefix=/usr \
|
|
--with-system-sqlite
|
|
make
|
|
}
|
|
|
|
package_sqlite3() {
|
|
pkgdesc="A C library that implements an SQL database engine"
|
|
depends=('readline')
|
|
provides=('sqlite')
|
|
conflicts=('sqlite')
|
|
replaces=('sqlite')
|
|
|
|
cd ${srcdir}/sqlite-autoconf-$_amalgamationver
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
# license - no linking required because pkgbase=pkgname
|
|
install -Dm644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
|
|
}
|
|
|
|
package_sqlite3-tcl() {
|
|
pkgdesc="sqlite3 Tcl Extension Architecture (TEA)"
|
|
depends=('sqlite3>=3.7.5')
|
|
|
|
cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
# link license
|
|
install -m755 -d ${pkgdir}/usr/share/licenses
|
|
ln -sf /usr/share/licenses/${pkgbase} "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|
|
|
|
package_sqlite3-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"
|
|
|
|
#cd ${srcdir}/sqlite-doc-${_amalgamationver}
|
|
cd ${srcdir}/sqlite-doc-${_docver}
|
|
mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
|
|
cp -R * ${pkgdir}/usr/share/doc/${pkgbase}/
|
|
|
|
# fix permissions and remove obsolete files; https://bugs.archlinux.org/task/24605
|
|
find ${pkgdir} -type f -perm 755 -exec ls -lha {} \;
|
|
find ${pkgdir} -type f -perm 755 -exec chmod 644 {} \;
|
|
|
|
find ${pkgdir} -type f -name '*~' -exec ls -lha {} \;
|
|
find ${pkgdir} -type d -name '*~' -exec ls -lha {} \;
|
|
find ${pkgdir} -name '*~' -exec rm -f {} \;
|
|
|
|
find ${pkgdir} -type f -name '.~*' -exec ls -lha {} \; # /build/pkg/sqlite-doc/usr/share/doc/sqlite/images/fileformat/.~lock.indexpage.odg#
|
|
find ${pkgdir} -type d -name '.~*' -exec ls -lha {} \;
|
|
find ${pkgdir} -name '.~*' -exec rm -f {} \;
|
|
}
|