diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-20 13:51:41 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-20 13:51:41 +0100 |
commit | 03f5495706f0dec7915deb3756b3eac54656ae3d (patch) | |
tree | 68de8308db226b57b99259a85d857cb1232f9355 /community/py3-multidict | |
parent | 42c1963d64a3aff873e13e6304a305001f6df246 (diff) | |
download | aports-03f5495706f0dec7915deb3756b3eac54656ae3d.tar.bz2 aports-03f5495706f0dec7915deb3756b3eac54656ae3d.tar.xz |
community/py3-multidict: use py3-setuptools
Diffstat (limited to 'community/py3-multidict')
-rw-r--r-- | community/py3-multidict/APKBUILD | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/community/py3-multidict/APKBUILD b/community/py3-multidict/APKBUILD index ce23cd54c8..5022a85743 100644 --- a/community/py3-multidict/APKBUILD +++ b/community/py3-multidict/APKBUILD @@ -9,24 +9,21 @@ url="https://github.com/aio-libs/multidict/" arch="all" license="Apache-2.0" depends="python3" -makedepends="python3-dev py-setuptools" +makedepends="python3-dev py3-setuptools" subpackages="$pkgname-dev" source="$_pkgname-$pkgver.tar.gz::https://github.com/aio-libs/multidict/archive/v$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" options="!strip" check() { - cd "$builddir" python3 setup.py check } build() { - cd "$builddir" python3 setup.py build } package() { - cd "$builddir" python3 setup.py install --prefix=/usr --root="$pkgdir" } |