aports/main/py-sqlite/APKBUILD
2011-03-23 19:35:18 -05:00

28 lines
666 B
Plaintext

# Contributor: Mika Havela <mika.havela@gmail.com>
# Maintainer: Mika Havela <mika.havela@gmail.com>
pkgname=py-sqlite
_realname=pysqlite
pkgver=2.6.3
pkgrel=0
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"