diff options
author | root <root@rshg054.dnsready.net> | 2013-08-31 02:47:09 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-31 02:47:09 -0700 |
commit | 35038ccdbc0ea8a9d5c9bf1f5e992d84dda29b99 (patch) | |
tree | afe4d4bb8cf56641358ca5d375e81a42974d24bb /extra/sqlite/PKGBUILD | |
parent | 109554d1877a597958bd06c69eb4a8fca34ef367 (diff) |
Sat Aug 31 02:42:46 PDT 2013
Diffstat (limited to 'extra/sqlite/PKGBUILD')
-rw-r--r-- | extra/sqlite/PKGBUILD | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/extra/sqlite/PKGBUILD b/extra/sqlite/PKGBUILD index 6bd4dc07a..c0fc5cf86 100644 --- a/extra/sqlite/PKGBUILD +++ b/extra/sqlite/PKGBUILD @@ -1,14 +1,14 @@ -# $Id: PKGBUILD 193679 2013-08-27 14:33:02Z andyrtr $ +# $Id: PKGBUILD 193758 2013-08-30 08:53:28Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgbase="sqlite" pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') -_amalgamationver=3080000 +_amalgamationver=3080001 _docver=${_amalgamationver} #_docver=3080001 -pkgver=3.8.0 -pkgrel=2 +pkgver=3.8.0.1 +pkgrel=1 pkgdesc="A C library that implements an SQL database engine" arch=('i686' 'x86_64') license=('custom:Public Domain') @@ -19,8 +19,8 @@ source=( # tarball containing the amalgamation for SQLite >= 3.7.5 together with http://www.sqlite.org/2013/sqlite-doc-${_docver}.zip license.txt) options=('!libtool' '!emptydirs') -sha1sums=('610d01764c2fc6c6220ab88a57ac4de86515ebc8' - 'db535a6b86a20192f66146911893aa3b19d4b393' +sha1sums=('d2fd623a7537e0fad5a2f33169dd9d6def268583' + '89005a0fdd60accd037845895c9b21221d9fc30d' 'f34f6daa4ab3073d74e774aad21d66878cf26853') build() { @@ -50,9 +50,6 @@ package_sqlite() { cd ${srcdir}/sqlite-autoconf-$_amalgamationver make DESTDIR=${pkgdir} install - # fix pkgconfig version number FS#36679 - sed -i -e "s|@RELEASE@|$pkgver|" ${pkgdir}/usr/lib/pkgconfig/sqlite3.pc - # license - no linking required because pkgbase=pkgname install -D -m644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgbase}/license.txt } |