summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaawda2020-01-21 22:27:59 +0100
committerhaawda2020-01-21 22:27:59 +0100
commit8cfb6cc6a84e0b86832a81bef1f3e2a428207640 (patch)
treea77b136b00738cb0ab199073d542f54e1253cd86
parent61933a163e63a97253c499c06436c513a47066fb (diff)
downloadaur-8cfb6cc6a84e0b86832a81bef1f3e2a428207640.tar.gz
remove python2 variant
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD8
2 files changed, 3 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 63228f159edc..65ca9af3cd44 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,13 @@
pkgbase = tinywm-git
pkgdesc = A tiny window manager written in only ~50 lines of code
pkgver = 1.1.33.g9d05612
- pkgrel = 1
+ pkgrel = 2
url = http://incise.org/tinywm.html
arch = i686
arch = x86_64
license = custom
makedepends = git
depends = libx11
- optdepends = python-xlib: for python version (uncomment last line of PKGBUILD)
provides = tinywm
conflicts = tinywm
source = git://github.com/mackstann/tinywm.git
diff --git a/PKGBUILD b/PKGBUILD
index 6705cd5e3194..5d158f82d93a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=tinywm-git
pkgver=1.1.33.g9d05612
-pkgrel=1
+pkgrel=2
pkgdesc="A tiny window manager written in only ~50 lines of code"
arch=('i686' 'x86_64')
url="http://incise.org/tinywm.html"
@@ -12,8 +12,6 @@ makedepends=('git')
provides=('tinywm')
conflicts=('tinywm')
depends=('libx11')
-optdepends=('python-xlib: for python version (uncomment last line of
-PKGBUILD)')
source=('git://github.com/mackstann/tinywm.git')
md5sums=('SKIP')
_gitname="tinywm"
@@ -23,10 +21,8 @@ pkgver() {
printf %s $(git describe --tags|tr - .)
}
-
build() {
cd "$_gitname"
-
make
}
@@ -34,5 +30,5 @@ package() {
cd "$_gitname"
install -D -m755 tinywm $pkgdir/usr/bin/tinywm
install -D -m644 README $pkgdir/usr/share/licenses/$pkgname/LICENSE
- #install -D -m755 tinywm.py $pkgdir/usr/bin/tinywm.py
+
}