blob: 8e41922a281de8ec901608448851375858dc1106 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=aty
pkgver=1.0
pkgrel=1
pkgdesk="client fix for stupid alacritty"
arch=('any')
depends=('alacritty')
makedepends=('git')
url="https://git.airen-no-jikken.icu/aty.git"
license=('MIT')
source=("${pkgname}::git+https://git.airen-no-jikken.icu/aty.git")
cksums=('SKIP')
build() {
cd $srcdir/$pkgname
make
}
package() {
cd $srcdir/$pkgname
install -D -t $pkgdir/usr/bin aty
strip -x --strip-unneeded $pkgdir/usr/bin/aty
}
|