summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoseph Brains2017-10-31 22:12:04 +0200
committerJoseph Brains2017-10-31 22:12:04 +0200
commit6a07d991e01e7dac55fa8101caf93780c386084a (patch)
treea43d2f2886fc97a0c0461a5c6423c3fba26649d9
parent385557823a214633a8df7edeaa08195189a7025c (diff)
downloadaur-6a07d991e01e7dac55fa8101caf93780c386084a.tar.gz
fixed syntax error in package()
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3fd57a30bc8f..247610d60fba 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python-yarl-gns3
pkgdesc = Yet another URL library (GNS3)
pkgver = 0.11.0
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/aio-libs/yarl/
arch = any
groups = gns3
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
}