16 lines
469 B
Plaintext
16 lines
469 B
Plaintext
# Description: Pure python module for (de)serialization to and from VDF that works just like json
|
|
# URL: https://github.com/ValvePython/vdf
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-vdf
|
|
version=3.3
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/v/vdf/vdf-$version.tar.gz)
|
|
|
|
build() {
|
|
cd vdf-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install -O2 --root=$PKG --skip-build
|
|
}
|