blob: a0ae27156a9a3657af7ab73caddb552674ff0e70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Contributor: Mika Havela <mika.havela@gmail.com>
# Maintainer: Mika Havela <mika.havela@gmail.com>
pkgname=py-sqlite
_realname=pysqlite
pkgver=2.6.0
pkgrel=0
pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational database engine"
url="http://code.google.com/p/pysqlite/"
license="MIT"
depends="python sqlite"
makedepends="sqlite-dev python-dev"
install=
source="http://pysqlite.googlecode.com/files/${_realname}-${pkgver}.tar.gz"
_builddir="$srcdir"/$_realname-$pkgver
build() {
return 0
}
package() {
cd "$_builddir"
python setup.py install --root="$pkgdir"
}
md5sums="fc92618b3b39d02e6ff10dc467c36640 pysqlite-2.6.0.tar.gz"
|