diff options
author | Joshua Ismael Haase Hernandez <hahj87@gmail.com> | 2011-05-29 18:36:04 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernandez <hahj87@gmail.com> | 2011-05-29 18:36:04 -0500 |
commit | edf6965e83a24919183a069139792ee4d83b0a61 (patch) | |
tree | 1fa61b42c7febe3428e2d79c30ede74a7e87fec9 /core/sqlite3/PKGBUILD | |
parent | 026c3178ce69b655c2f28743e175b500065770f9 (diff) |
* sqlite3
* b43-tools-git
Diffstat (limited to 'core/sqlite3/PKGBUILD')
-rw-r--r-- | core/sqlite3/PKGBUILD | 12 |
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}/ +} |