Files
ports/core/python2/spkgbuild
2018-05-02 21:34:14 +08:00

27 lines
646 B
Plaintext

# description : Next generation of the python high-level scripting language
# homepage : http://www.python.org/
# maintainer : emmett1, emmett1.2miligrams at gmail.com
# depends : libffi openssl
name=python2
version=2.7.14
release=2
source=(https://www.python.org/ftp/python/$version/Python-$version.tar.xz)
md5sum=(1f6db41ad91d9eb0a6f0c769b8613c5b)
build() {
cd Python-$version
./configure --prefix=/usr \
--enable-shared \
--with-system-expat \
--with-system-ffi \
--enable-unicode=ucs4
make
make DESTDIR=$PKG install
chmod -v 755 $PKG/usr/lib/libpython2.7.so.1.0
}