Created
February 18, 2018 15:12
-
-
Save f440/dc229b7529f3e5f5b7c49fd495b72d02 to your computer and use it in GitHub Desktop.
PKGBUILD for xkeysnail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: f440 <[email protected]> | |
pkgname=python-xkeysnail | |
pkgver=0.0.1 | |
pkgrel=1 | |
pkgdesc="Yet another keyboard remapping tool for X environment" | |
arch=('any') | |
url="https://github.com/mooz/xkeysnail" | |
license=('GPL') | |
groups=() | |
depends=('python') | |
makedepends=('python-pip') | |
provides=() | |
conflicts=() | |
replaces=() | |
backup=() | |
options=(!emptydirs) | |
install= | |
source=('https://github.com/mooz/xkeysnail/archive/HEAD.tar.gz') | |
md5sums=('a2ec6b6300d539be2ff0b20aae4d87c9') | |
package() { | |
# cd "$srcdir/$pkgname-$pkgver" | |
cd "$srcdir/xkeysnail-HEAD" | |
python setup.py install --root="$pkgdir/" --optimize=1 | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment