sqlite: new package, sqlite 3.8.8.3

This commit is contained in:
Tom G. Christensen 2015-03-21 19:50:19 +01:00
parent c2cac8c1aa
commit dd1c8950df
4 changed files with 96 additions and 0 deletions

64
sqlite/build.sh Executable file
View File

@ -0,0 +1,64 @@
#!/bin/bash
# This is a buildpkg build.sh script
# build.sh helper functions
. ${BUILDPKG_SCRIPTS}/build.sh.functions
#
###########################################################
# Check the following 4 variables before running the script
topdir=sqlite
version=3.8.8.3
pkgver=1
source[0]=http://www.sqlite.org/2015/sqlite-autoconf-3080803.tar.gz
# If there are no patches, simply comment this
#patch[0]=
# Source function library
. ${BUILDPKG_SCRIPTS}/buildpkg.functions
# Global settings
export CFLAGS="-O2 -g -DSQLITE_HOMEGROWN_RECURSIVE_MUTEX -D__EXTENSIONS__"
export CPPFLAGS="-I$prefix/include"
export LDFLAGS="-L$prefix/lib -R$prefix/lib"
configure_args+=(--disable-static)
topsrcdir=sqlite-autoconf-3080803
reg prep
prep()
{
generic_prep
}
reg build
build()
{
generic_build
}
reg check
check()
{
generic_check
}
reg install
install()
{
generic_install DESTDIR
}
reg pack
pack()
{
generic_pack
}
reg distclean
distclean()
{
clean distclean
}
###################################################
# No need to look below here
###################################################
build_sh $*

7
sqlite/meta/ChangeLog Normal file
View File

@ -0,0 +1,7 @@
CHANGELOG
---------
* Sat Mar 21 2015 Tom G. Christensen <swpkg@jupiterrise.com> - 3.8.8.3-1
- Update to 3.8.8.3
* Wed Jul 16 2014 Tom G. Christensen <swpkg@jupiterrise.com> - 3.8.5-1
- Initial package

1
sqlite/meta/depend Normal file
View File

@ -0,0 +1 @@
TGCsqlitd sqlite auto

24
sqlite/meta/pkgdef Normal file
View File

@ -0,0 +1,24 @@
[sqlite]
pkgname="${pkgprefix}sqlit"
name="$topdir - SQL database engine"
pkgcat="application"
pkgvendor="http://www.sqlite.org"
pkgdesc="Library that implements an embeddable SQL database engine"
pkgver="$pkgver"
files(-,root,bin)
$_bindir/sqlite3
$_libdir/libsqlite3.so.*
$_mandir/man1/sqlite3.1*
[sqlite-devel]
pkgname="${pkgprefix}sqlitd"
name="$topdir-devel - sqlite development support"
pkgcat="application"
pkgvendor="http://www.sqlite.org/"
pkgdesc="Files needed for developing with sqlite"
pkgver="$pkgver"
files(-,root,bin)
$_libdir/libsqlite3.so
$_libdir/pkgconfig/sqlite3.pc
$_includedir/sqlite*