19 lines
524 B
Plaintext
19 lines
524 B
Plaintext
|
# Description: Python paketlerindeki scm verilerinin yönetimini sağlayan setuptools eklentisi
|
||
|
# URL: https://github.com/pypa/setuptools_scm
|
||
|
# Packager: milisarge
|
||
|
# Depends on: python sqlite python-setuptools
|
||
|
|
||
|
name=python-setuptools-scm
|
||
|
version=1.15.6
|
||
|
release=1
|
||
|
|
||
|
source=(https://github.com/pypa/setuptools_scm/archive/v$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
export SETUPTOOLS_SCM_PRETEND_VERSION=$version
|
||
|
cd "$SRC"/setuptools_scm-$version
|
||
|
python2 setup.py build
|
||
|
python2 setup.py egg_info
|
||
|
python2 setup.py install --root "$PKG"
|
||
|
}
|