summaryrefslogtreecommitdiff
path: root/core/sqlite3
diff options
context:
space:
mode:
Diffstat (limited to 'core/sqlite3')
-rw-r--r--core/sqlite3/PKGBUILD12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/sqlite3/PKGBUILD b/core/sqlite3/PKGBUILD
index f866acbed..f465c167a 100644
--- a/core/sqlite3/PKGBUILD
+++ b/core/sqlite3/PKGBUILD
@@ -16,9 +16,12 @@ url="http://www.sqlite.org/"
makedepends=('tcl' 'readline>=6.0.00')
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)
http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz
+ #http://www.sqlite.org/sqlite-doc-${_amalgamationver}.zip
+ http://www.sqlite.org/sqlite-doc-${_docver}.zip
license.txt)
options=('!libtool' '!emptydirs')
md5sums=('7eb41eea5ffa5cbe359a48629084c425'
+ '1c9b9da6f98f1da2d8958254662c393c'
'c1cdbc5544034d9012e421e75a5e4890')
build() {
@@ -61,3 +64,12 @@ package_sqlite3-tcl() {
make DESTDIR=${pkgdir} install
}
+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"
+ #arch=('any') - not yet supported
+
+ #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+ cd ${srcdir}/sqlite-doc-${_docver}
+ mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+ cp -R * ${pkgdir}/usr/share/doc/${pkgbase}/
+}