blob: 82fd7b27d3a02e45b2f165592787c4452c00e2ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: Murli Tawari <kraanzu@gmail.com>
pkgname=smassh
_pkgname=${pkgname}
pkgver=3.0.3
pkgrel=1
pkgdesc="Smassh your Keyboard, TUI Edition"
url="https://github.com/kraanzu/smassh"
arch=('any')
license=('GPL-3.0')
depends=('python' 'git')
makedepends=()
source=("${url}/releases/download/v${pkgver}/linux-${pkgname}")
sha256sums=('SKIP')
prepare() {
cd "${srcdir}"
chmod +x "linux-${pkgname}"
mv "linux-${pkgname}" "${pkgname}"
}
package() {
install -Dm0755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
}
|