summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authordustball2017-08-25 16:11:16 +0200
committerdustball2017-08-25 16:11:16 +0200
commitc3040c0b3102edbc36ea4818fbfe88d6c28733eb (patch)
tree566479d758720bed4a6190df7364d6bc12fd713c
parent529ac3ebf4bb32a88534b7a5ea02ad61741a54ec (diff)
downloadaur-c3040c0b3102edbc36ea4818fbfe88d6c28733eb.tar.gz
the structure of the package changed. using python2 setup.py to install now
-rw-r--r--.AURINFO2
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
3 files changed, 6 insertions, 6 deletions
diff --git a/.AURINFO b/.AURINFO
index 28897b32fa1b..640b5ad4c89e 100644
--- a/.AURINFO
+++ b/.AURINFO
@@ -1,6 +1,6 @@
pkgbase = quicktile-git
pkgdesc = Lightweight standalone alternative to Compiz Grid plugin
- pkgver = 20140626
+ pkgver = 20170825
pkgrel = 1
url = https://github.com/ssokolow/quicktile
arch = any
diff --git a/.SRCINFO b/.SRCINFO
index 70011f39a5f1..e3835fcb3673 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Sun Jan 3 05:13:52 UTC 2016
+# Fri Aug 25 14:09:28 UTC 2017
pkgbase = quicktile-git
pkgdesc = Lightweight standalone alternative to Compiz Grid plugin
- pkgver = 20160103
+ pkgver = 20170825
pkgrel = 1
url = https://github.com/ssokolow/quicktile
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 37d906ca640e..43b50f209467 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,5 +1,5 @@
pkgname=quicktile-git
-pkgver=20160103
+pkgver=20170825
pkgrel=1
url="https://github.com/ssokolow/quicktile"
pkgdesc="Lightweight standalone alternative to Compiz Grid plugin"
@@ -28,6 +28,6 @@ build()
package()
{
- install -Dv -m755 ${srcdir}/quicktile/quicktile.py \
- $pkgdir/usr/bin/quicktile
+ cd ${srcdir}/${_gitname}
+ python2 setup.py install --root="${pkgdir}" --optimize=1
}