Cheetah: cleanup build and install scripts, dont use 'easy_install', dont depend on 'distribute'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2012-05-24 17:07:13 +02:00
parent ee93844578
commit d50781013c
2 changed files with 3 additions and 3 deletions

View File

@ -28,6 +28,6 @@ export LDFLAGS="$LDFLAGS -L$SYSROOT_PREFIX/usr/lib -L$SYSROOT_PREFIX/lib"
cd $PKG_BUILD
python setup.py build --cross-compile
python setup.py install -O0 --no-compile --prefix /usr --root .install
python setup.py install --root=./.install --prefix=/usr
rm -rf .install/usr/bin

View File

@ -25,8 +25,8 @@ PKG_ARCH="any"
PKG_LICENSE="OSS"
PKG_SITE="http://www.cheetahtemplate.org/"
PKG_URL="http://pypi.python.org/packages/source/C/Cheetah/$PKG_NAME-$PKG_VERSION.tar.gz"
PKG_DEPENDS="Python distribute"
PKG_BUILD_DEPENDS="toolchain Python distribute distutilscross"
PKG_DEPENDS="Python"
PKG_BUILD_DEPENDS="toolchain Python distutilscross"
PKG_PRIORITY="optional"
PKG_SECTION="python/devel"
PKG_SHORTDESC="cheetah: Python-powered template engine and code generator"