summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4d8b6f87d691b7cd755b8fba63f9e5e9b505450e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Devin Pohl <pohl.devin@gmail.com>

pkgname=matrixise
pkgver=2.0.0
pkgrel=1
pkgdesc="Turn anything into 'The Matrix' wallpaper"
arch=('any')
url="https://github.com/Shizcow/matrixise"
license=('GPL2')
depends=('ncurses')
makedepends=('rust' 'git')
source=(
  "${pkgname}::git+${url}.git"
)
md5sums=('SKIP')
build() (
    cd matrixise
    cargo build --release --examples
)
package() (
    install -D -m 755 ${srcdir}/matrixise/target/release/examples/stdin ${pkgdir}/usr/bin/$pkgname
)