apkbuild-pypi: rename _builddir to builddir

This commit is contained in:
Jakub Jirutka 2016-06-12 16:11:51 +02:00 committed by Natanael Copa
parent 542617a6b1
commit 7caf00125a

View File

@ -29,15 +29,15 @@ depends="python $pydepends"
makedepends="python-dev $pymakedepends"
subpackages="$pkgname-doc"
source="[% source %]"
builddir="$srcdir/$_pkgreal-$pkgver"
_builddir="$srcdir/$_pkgreal-$pkgver"
build() {
cd "$_builddir"
cd "$builddir"
python setup.py build || return 1
}
package() {
cd "$_builddir"
cd "$builddir"
python setup.py install \
--prefix=/usr \
--root="$pkgdir" \