mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
initial import
This commit is contained in:
21
packages/python/databases/pysqlite/build
Executable file
21
packages/python/databases/pysqlite/build
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
$SCRIPTS/build toolchain
|
||||
$SCRIPTS/build Python
|
||||
$SCRIPTS/build sqlite
|
||||
|
||||
. config/options.python
|
||||
|
||||
cd $BUILD/$1*
|
||||
|
||||
$PYTHON setup.py install --prefix /usr --root .install
|
||||
|
||||
find .install -name "*.py" -type f -exec rm -rf "{}" ";"
|
||||
find .install -name "*.pyo" -type f -exec rm -rf "{}" ";"
|
||||
find .install -name "tests" -type d -exec rm -rf "{}" ";"
|
||||
|
||||
rm -rf .install/usr/bin
|
||||
rm -rf .install/usr/pysqlite2-doc
|
||||
rm -rf .install/usr/lib/python*/site-packages/pysqlite2/test
|
||||
12
packages/python/databases/pysqlite/install
Executable file
12
packages/python/databases/pysqlite/install
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
$SCRIPTS/install Python
|
||||
$SCRIPTS/install sqlite
|
||||
|
||||
BUILD_DIR=`ls -d $BUILD/$1*`
|
||||
|
||||
. config/options.python
|
||||
|
||||
cp -PR $BUILD_DIR/.install/* $INSTALL
|
||||
1
packages/python/databases/pysqlite/url
Normal file
1
packages/python/databases/pysqlite/url
Normal file
@@ -0,0 +1 @@
|
||||
http://oss.itsystementwicklung.de/download/pysqlite/2.5/2.5.1/pysqlite-2.5.1.tar.gz
|
||||
Reference in New Issue
Block a user