summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorJoseph Brains2017-10-31 22:12:04 +0200
committerJoseph Brains2017-10-31 22:12:04 +0200
commit6a07d991e01e7dac55fa8101caf93780c386084a (patch)
treea43d2f2886fc97a0c0461a5c6423c3fba26649d9 /PKGBUILD
parent385557823a214633a8df7edeaa08195189a7025c (diff)
downloadaur-6a07d991e01e7dac55fa8101caf93780c386084a.tar.gz
fixed syntax error in package()
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index f3339252ed3d..5b3385eb1c88 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=yarl
pkgname=python-${_pkgname}-gns3
pkgver=0.11.0
-pkgrel=2
+pkgrel=3
pkgdesc="Yet another URL library (GNS3)"
arch=('any')
url="https://github.com/aio-libs/yarl/"
@@ -21,6 +21,6 @@ build() {
}
package() {
- cd "${srcdiri}/${_pkgname}-${pkgver}"
+ cd "${srcdir}/${_pkgname}-${pkgver}"
python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
}