summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ffb481a0617290416e700d7029c70ff9cf0280e1 (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
# Maintainer: Alex Busch <abusch8@outlook.com>

pkgname=tetris-tui-git
pkgver=0.1.0
pkgrel=1
pkgdesc='Modern Tetris TUI written in Rust'
arch=('x86_64')
url='https://github.com/abusch8/Tetris'
license=('GPL3')
depends=()
makedepends=('git' 'cargo' 'rust')
source=('git+https://github.com/abusch8/Tetris')
sha256sums=('SKIP')

build() {
    cd "$srcdir/Tetris"
    make
}

package() {
    cd "$srcdir/Tetris"
    make clean install
}