19 lines
515 B
Plaintext
19 lines
515 B
Plaintext
|
# Description: python module for creating large XML files
|
||
|
# URL: https://foss.heptapod.net/openpyxl/et_xmlfile
|
||
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
||
|
# Depends on: python3-lxml python3-tox
|
||
|
|
||
|
name=python3-et_xmlfile
|
||
|
version=1.1
|
||
|
release=1
|
||
|
source=(https://foss.heptapod.net/openpyxl/${name#*-}/-/archive/$version/${name#*-}-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd ${name#*-}-$version
|
||
|
/usr/bin/python3 setup.py build
|
||
|
|
||
|
/usr/bin/python3 setup.py install --skip-build \
|
||
|
--optimize=1 --prefix=/usr --root=$PKG
|
||
|
|
||
|
}
|