blob: c3f29177c415aa561563e514a4492a614338f360 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Interface DB-API 2.0 en python pour SQlite
# URL: http://code.google.com/p/pysqlite
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on: python , sqlite3
name=python-sqlite
version=2.6.0
release=1
source=( http://pysqlite.googlecode.com/files/pysqlite-$version.tar.gz
setup.cfg)
build() {
cd pysqlite-$version
cp $SRC/setup.cfg .
python setup.py install --root=$PKG
install -D -m644 LICENSE $PKG/usr/share/licenses/$name/LICENSE
}
|