void-packages/srcpkgs/sqlite/template

54 lines
1.2 KiB
Plaintext
Raw Normal View History

# Template build file for 'sqlite'.
pkgname=sqlite
2013-05-20 20:45:02 +02:00
version=3.7.17
revision=2
2011-04-08 18:09:30 +02:00
wrksrc=sqlite
create_wrksrc=yes
makedepends="readline-devel"
short_desc="SQL Database Engine in a C Library"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-08-11 10:01:41 +02:00
homepage="http://www.sqlite.org"
license="Public Domain"
2013-05-20 20:45:02 +02:00
_amalgamationver=3071700
2013-03-19 17:54:50 +01:00
distfiles="http://www.sqlite.org/2013/sqlite-autoconf-${_amalgamationver}.tar.gz"
2013-05-20 20:45:02 +02:00
checksum=8ff46d0baa9e64c0815544e829e985f1161c096aa6344c8f430791dbeadc2baf
2012-03-21 22:53:43 +01:00
do_configure() {
2013-04-27 10:25:13 +02:00
export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
2011-04-08 18:09:30 +02:00
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
2011-04-08 18:09:30 +02:00
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
cp -f ${XBPS_CROSSPFDIR}/config.sub .
./configure ${configure_args} --enable-threadsafe \
--enable-readline --enable-dynamic-extensions
2011-11-02 21:42:31 +01:00
}
2012-03-21 22:53:43 +01:00
do_build() {
2011-11-02 21:42:31 +01:00
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
make ${makejobs}
2011-04-08 18:09:30 +02:00
}
2012-03-21 22:53:43 +01:00
do_install() {
2011-04-08 18:09:30 +02:00
cd ${wrksrc}/sqlite-autoconf-${_amalgamationver}
make DESTDIR=${DESTDIR} install
rm -f ${DESTDIR}/usr/lib/*.a
}
sqlite-devel_package() {
depends="readline-devel sqlite>=${version}"
2013-05-20 20:45:02 +02:00
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
}
}
sqlite_package() {
pkg_install() {
vmove usr
}
}