44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
# Tanım: Sonraki nesil python üst düzey betik dili
|
||
# URL: URL: http://www.python.org
|
||
# Paketçi: milisarge
|
||
# Gerekler: 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)
|
||
|
||
|
||
derle() {
|
||
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
|
||
Name[tr]=Dokumentasyon Python" > $PKG/usr/share/applications/python.desktop
|
||
install -Dm644 $SRC/$name.png \
|
||
$PKG/usr/share/icons/hicolor/48x48/apps/$name.png
|
||
}
|