blob: bdfc6385e3bf0a652bef458caebc1bc6080652c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Cat2048 <xdotoolhelper@outlook.com>
pkgname=xdotoolhelper-git
pkgver=1.0.4
pkgrel=1
pkgdesc="A simple bash script to generate xdotool scripts."
arch=('any')
url="https://github.com/gamingdoom/xdotoolhelper"
license=('GPL3')
depends=('bash')
makedepends=('git')
source=('git+https://github.com/gamingdoom/xdotoolhelper.git')
noextract=()
sha256sums=('SKIP')
package() {
ls
cd "xdotoolhelper"
cp -v xdotoolhelper.sh "xdotoolhelper-$pkgver"
chmod 755 "xdotoolhelper-$pkgver"
install -Dt "$pkgdir"/usr/bin "xdotoolhelper-$pkgver"
echo "alias xdotoolhelper='xdotoolhelper-$pkgver'" >> ~/.bashrc
}
|