51 lines
1.6 KiB
Bash
51 lines
1.6 KiB
Bash
# Contributor: Mehdi Chinoune <mehdi.chinoune@hotmail.com>
|
|
|
|
_realname=google-apitools
|
|
pkgbase=mingw-w64-python-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
|
|
pkgver=0.5.32
|
|
pkgrel=2
|
|
pkgdesc="client libraries for humans (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
|
|
msys2_references=(
|
|
'pypi: google-apitools'
|
|
)
|
|
url='https://github.com/google/apitools'
|
|
license=('spdx:Apache-2.0')
|
|
depends=("${MINGW_PACKAGE_PREFIX}-python"
|
|
"${MINGW_PACKAGE_PREFIX}-python-httplib2"
|
|
"${MINGW_PACKAGE_PREFIX}-python-fasteners"
|
|
"${MINGW_PACKAGE_PREFIX}-python-oauth2client"
|
|
"${MINGW_PACKAGE_PREFIX}-python-six")
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-python"
|
|
"${MINGW_PACKAGE_PREFIX}-python-setuptools")
|
|
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz")
|
|
sha256sums=('c3763e52289f61e21c41d5531e20fbda9cc8484a088b8686fd460770db8bad13')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}"
|
|
|
|
"${MINGW_PREFIX}"/bin/python setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}/python-build-${MSYSTEM}"
|
|
|
|
"${MINGW_PREFIX}"/bin/python setup.py check
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/python-build-${MSYSTEM}"
|
|
|
|
MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \
|
|
"${MINGW_PREFIX}"/bin/python setup.py install --prefix="${MINGW_PREFIX}" \
|
|
--root="${pkgdir}" --optimize=1 --skip-build
|
|
|
|
for _f in "${pkgdir}${MINGW_PREFIX}"/bin/*-script.py; do
|
|
# Remove shebang line
|
|
sed -e '1 { s/^#!.*$// }' -i "${_f}"
|
|
done
|
|
}
|