summaryrefslogtreecommitdiff
path: root/community/sqlite2/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/sqlite2/PKGBUILD')
-rw-r--r--community/sqlite2/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/community/sqlite2/PKGBUILD b/community/sqlite2/PKGBUILD
deleted file mode 100644
index c6d6c27ef..000000000
--- a/community/sqlite2/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 68015 2012-03-17 00:56:03Z giovanni $
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Judd <jvinet@zeroflux.org>
-
-pkgname=sqlite2
-pkgver=2.8.17
-pkgrel=5
-pkgdesc="A C library that implements an SQL database engine"
-arch=('i686' 'x86_64')
-url="http://www.sqlite.org/"
-depends=('readline>=6.0.00')
-source=("http://www.sqlite.org/sqlite-$pkgver.tar.gz"
- 'LICENSE')
-license=('custom')
-options=('!libtool')
-md5sums=('838dbac20b56d2c4292e98848505a05b'
- '5d3b333e59a37747284f66081660f8a1')
-
-build() {
- cd ${srcdir}/sqlite-${pkgver}
-
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd ${srcdir}/sqlite-${pkgver}
-
- make DESTDIR=${pkgdir} install
-
- # install custom license
- install -Dm644 ${srcdir}/LICENSE \
- ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}