diff options
author | Guillaume Horel | 2021-07-19 17:36:35 -0400 |
---|---|---|
committer | Guillaume Horel | 2021-07-19 17:36:35 -0400 |
commit | e9cc5c39f156fcdbb388931d175cca6d1bd97b3a (patch) | |
tree | b08ec6a05583c2a34241949a03c99fe25d0bec94 /PKGBUILD | |
parent | 9d09ebd6639ab86e3aaec97a47c42d9da2de1737 (diff) | |
download | aur-e9cc5c39f156fcdbb388931d175cca6d1bd97b3a.tar.gz |
fix setup.py
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -12,8 +12,15 @@ makedepends=('python-setuptools') optdepends=() license=('Apache') arch=('x86_64') -source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz") -sha256sums=('e24bd03c94944e1536ec8437ab83fb4ac38477412426c1ffd4e056dd16cde235') +source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" + "install.patch") +sha256sums=('e24bd03c94944e1536ec8437ab83fb4ac38477412426c1ffd4e056dd16cde235' + 'fcbb43d2f977e6aca13c4d2ec4e8012417996339b4d7f6b2bf0cedb90ebed9c5') + +prepare() { + cd "${_pkgname}-${pkgver}" + patch -p1 < ../install.patch +} package() { cd "${_pkgname}-${pkgver}" |