summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorfzerorubigd2016-04-02 08:59:38 +0430
committerfzerorubigd2016-04-02 08:59:38 +0430
commitf415042077351ed365dd07f5dd05b72700b94730 (patch)
tree8b0fb5caa9a820ba1bce8ae9b0311cfdda7553df
parentb9da632a5ba7a63465a848845c47fa80ec5a8415 (diff)
downloadaur-f415042077351ed365dd07f5dd05b72700b94730.tar.gz
fix the wrong folder nbame
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6f2410dbf91b..78ff63cd19ae 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = pgcli
pkgdesc = a command line interface for Postgres with auto-completion and syntax highlighting
pkgver = 0.20.1
- pkgrel = 1
+ pkgrel = 2
url = http://pgcli.com/
arch = any
license = BSD
diff --git a/PKGBUILD b/PKGBUILD
index 85fdd2696119..43c7b0c4523b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=pgcli
pkgver=0.20.1
-pkgrel=1
+pkgrel=2
pkgdesc="a command line interface for Postgres with auto-completion and syntax highlighting"
url="http://pgcli.com/"
arch=(any)
@@ -15,7 +15,7 @@ provides=('pgcli')
conflicts=('pgcli-git')
package() {
- cd $srcdir/pgcli
+ cd $srcdir/pgcli-${pkgver}
python setup.py install --root=$pkgdir/ --optimize=1
echo "#!/usr/bin/bash" > $pkgdir/usr/bin/pgcli
echo "python -c 'import pgcli.main; pgcli.main.cli()' \"\$@\"" >> $pkgdir/usr/bin/pgcli