blob: ee41216e6e9eb8e8871edd53b0a0498a2bd82092 (
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
27
|
# Contributor: Mika Havela <mika.havela@gmail.com>
# Maintainer: Mika Havela <mika.havela@gmail.com>
pkgname=py-sqlite
_realname=pysqlite
pkgver=2.6.3
pkgrel=2
pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational database engine"
url="http://code.google.com/p/pysqlite/"
arch="all"
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="711afa1062a1d2c4a67acdf02a33d86e pysqlite-2.6.3.tar.gz"
|