2016-02-24 01:27:23 +01:00
|
|
|
# Description: Next generation of the python high-level scripting language
|
|
|
|
# URL: URL: http://www.python.org
|
2016-03-08 17:03:53 +01:00
|
|
|
# Packager: milis
|
2016-02-24 01:27:23 +01:00
|
|
|
# Depends on: libffi sqlite
|
|
|
|
|
|
|
|
_pybasever=2.7
|
|
|
|
|
|
|
|
name=python
|
|
|
|
version=2.7.11
|
|
|
|
release=1
|
|
|
|
|
|
|
|
source=(
|
|
|
|
http://www.python.org/ftp/python/$version/Python-$version.tar.xz
|
|
|
|
python.png)
|
|
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd Python-$version
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-system-expat \
|
|
|
|
--with-system-ffi \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-unicode=ucs4
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
chmod -v 755 $PKG/usr/lib/libpython2.7.so.1.0
|
|
|
|
|
|
|
|
# Part of python3
|
|
|
|
rm -f $PKG/usr/bin/2to3
|
|
|
|
|
|
|
|
mkdir -p $PKG/usr/share/applications
|
|
|
|
echo "[Desktop Entry]
|
|
|
|
Categories=Development;Documentation
|
|
|
|
Exec=xdg-open file:///usr/share/doc/python-$version/index.html
|
|
|
|
Icon=python
|
|
|
|
StartupNotify=false
|
|
|
|
Terminal=false
|
|
|
|
Type=Application
|
|
|
|
Name=Python Documentation
|
2016-03-08 17:03:53 +01:00
|
|
|
Name[tr]=Dokumentasyon Python" > $PKG/usr/share/applications/python.desktop
|
2016-02-24 01:27:23 +01:00
|
|
|
install -Dm644 $SRC/$name.png \
|
|
|
|
$PKG/usr/share/icons/hicolor/48x48/apps/$name.png
|
|
|
|
}
|