diff options
author | Johannes Wienke | 2015-08-23 23:01:09 +0200 |
---|---|---|
committer | Johannes Wienke | 2015-08-23 23:01:09 +0200 |
commit | fb87427fd8bbc056facfcb4b17862c964a181245 (patch) | |
tree | 424f937b378983f5e8a08d44313ee05e5ec40eff /PKGBUILD | |
download | aur-fb87427fd8bbc056facfcb4b17862c964a181245.tar.gz |
Initial import as previously existed on old aur
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..502e2aaf1b9 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: Johannes Wienke <languitar@semipol.de> +# Contributor: Alad Wenter <alad@linuxbbq.org> +# Contributor: slowpoke <mail+aur at slowpoke dot io> +_pkgname='quickswitch-for-i3' +pkgname='quickswitch-i3' +pkgver=2.2 +pkgrel=4 +pkgdesc="A python utility to quickly change to and locate windows in i3" +arch=(any) +url="https://github.com/proxypoke/quickswitch-for-i3" +license=('custom:WTFPL') +depends=('dmenu' 'python-i3-git') +options=(!emptydirs) +source=("https://github.com/proxypoke/${_pkgname}/archive/${pkgver}.tar.gz") +sha256sums=('cf08f651c0fba42bf0ec1ddb25449193858c9a8634bd7fca2d98fa6331f40c42') + +package() { + cd "$srcdir/$_pkgname-$pkgver" + python setup.py install --root="$pkgdir/" --optimize=1 + + #license + install -D -m 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} |