moved lots to gui

This commit is contained in:
Ella-0 2021-07-31 12:22:16 +00:00
parent 71b5f9a679
commit 685fe1f01b
48 changed files with 0 additions and 0 deletions

22
gui/alacritty/build.sh Normal file
View file

@ -0,0 +1,22 @@
pkgname=alacritty
pkgver=0.8.0
fetch() {
curl -L "https://github.com/alacritty/alacritty/archive/refs/tags/v$pkgver.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
}
build() {
cd $pkgname-$pkgver
cargo build --release --locked --no-default-features --features wayland
}
package() {
cd $pkgname-$pkgver
install -Dm755 target/release/$pkgname $pkgdir/usr/bin/
}
license() {
cd $pkgname-$pkgver
cat LICENSE-APACHE
}