mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 15:43:49 +02:00
sqlite: update to 3.8.0.
This commit is contained in:
parent
f3cde25469
commit
8aa841a738
1 changed files with 8 additions and 21 deletions
|
@ -1,15 +1,15 @@
|
||||||
# Template build file for 'sqlite'.
|
# Template build file for 'sqlite'.
|
||||||
pkgname=sqlite
|
pkgname=sqlite
|
||||||
version=3.7.17
|
version=3.8.0
|
||||||
revision=2
|
revision=1
|
||||||
wrksrc=sqlite
|
_amalgamationver=3071700
|
||||||
create_wrksrc=yes
|
wrksrc="sqlite-autoconf-${_amalgamationver}"
|
||||||
|
build_style=gnu-configure
|
||||||
makedepends="readline-devel"
|
makedepends="readline-devel"
|
||||||
short_desc="SQL Database Engine in a C Library"
|
short_desc="SQL Database Engine in a C Library"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://www.sqlite.org"
|
homepage="http://www.sqlite.org"
|
||||||
license="Public Domain"
|
license="Public Domain"
|
||||||
_amalgamationver=3071700
|
|
||||||
distfiles="http://www.sqlite.org/2013/sqlite-autoconf-${_amalgamationver}.tar.gz"
|
distfiles="http://www.sqlite.org/2013/sqlite-autoconf-${_amalgamationver}.tar.gz"
|
||||||
checksum=8ff46d0baa9e64c0815544e829e985f1161c096aa6344c8f430791dbeadc2baf
|
checksum=8ff46d0baa9e64c0815544e829e985f1161c096aa6344c8f430791dbeadc2baf
|
||||||
|
|
||||||
|
@ -18,31 +18,18 @@ do_configure() {
|
||||||
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
||||||
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
|
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
|
||||||
|
|
||||||
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
|
|
||||||
cp -f ${XBPS_CROSSPFDIR}/config.sub .
|
|
||||||
|
|
||||||
./configure ${configure_args} --enable-threadsafe \
|
./configure ${configure_args} --enable-threadsafe \
|
||||||
--enable-readline --enable-dynamic-extensions
|
--enable-readline --enable-dynamic-extensions
|
||||||
}
|
}
|
||||||
|
|
||||||
do_build() {
|
|
||||||
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
|
|
||||||
make ${makejobs}
|
|
||||||
}
|
|
||||||
|
|
||||||
do_install() {
|
|
||||||
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
|
|
||||||
make DESTDIR=${DESTDIR} install
|
|
||||||
|
|
||||||
rm -f ${DESTDIR}/usr/lib/*.a
|
|
||||||
}
|
|
||||||
|
|
||||||
sqlite-devel_package() {
|
sqlite-devel_package() {
|
||||||
depends="readline-devel sqlite>=${version}"
|
depends="sqlite-${version}_${revision}"
|
||||||
short_desc+=" - development files"
|
short_desc+=" - development files"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
vmove usr/lib/pkgconfig
|
vmove usr/lib/pkgconfig
|
||||||
|
vmove "usr/lib/*.a"
|
||||||
|
vmove "usr/lib/*.so"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue