python-platformdirs 2.4.0
This commit is contained in:
37
mingw-w64-python-platformdirs/PKGBUILD
Normal file
37
mingw-w64-python-platformdirs/PKGBUILD
Normal file
@@ -0,0 +1,37 @@
|
||||
# Contributor: Raed Rizqie <raed.rizqie@gmail.com>
|
||||
|
||||
_realname=platformdirs
|
||||
pkgbase=mingw-w64-python-${_realname}
|
||||
pkgname=${MINGW_PACKAGE_PREFIX}-python-${_realname}
|
||||
pkgver=2.4.0
|
||||
pkgrel=1
|
||||
pkgdesc='A small Python module for determining appropriate platform-specific dirs (mingw-w64)'
|
||||
arch=('any')
|
||||
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32')
|
||||
license=('MIT')
|
||||
url='https://github.com/platformdirs/platformdirs'
|
||||
depends=(${MINGW_PACKAGE_PREFIX}-python)
|
||||
makedepends=(${MINGW_PACKAGE_PREFIX}-python-setuptools)
|
||||
source=("https://github.com/platformdirs/${_realname}/archive/${pkgver}.tar.gz")
|
||||
sha256sums=('b4488174a1695029088c34268c51d5115b468c4d08d8787bc48f712852837512')
|
||||
|
||||
prepare() {
|
||||
cd "${srcdir}"
|
||||
rm -rf python-build-${MSYSTEM} | true
|
||||
cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}"
|
||||
}
|
||||
|
||||
build() {
|
||||
msg "Python build for ${MSYSTEM}"
|
||||
cd "${srcdir}/python-build-${MSYSTEM}"
|
||||
${MINGW_PREFIX}/bin/python setup.py build
|
||||
}
|
||||
|
||||
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
|
||||
|
||||
install -Dm644 LICENSE.txt "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE.txt"
|
||||
}
|
||||
Reference in New Issue
Block a user