blob: 305c2e5e223e8ea82fe8cd053433473c766d378d (
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
26
27
28
29
30
31
|
# Maintainer: Dušan Simić <dusan.simic1810@gmail.com>
pkgname='neo-matrix'
_name='neo'
pkgver='0.6.1'
pkgrel=3
pkgdesc='Simulates the digital rain from "The Matrix"'
arch=('x86_64')
url='https://github.com/st3w/neo'
license=('GPL3')
depends=('ncurses')
makedepends=()
optdepends=('ttf-hanazono')
source=("$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('744a88cc6b98a4625ae5c5ee819640561f3df87518be0f9fca00ad787814b200')
prepare() {
cd "$_name-$pkgver"
./autogen.sh
}
build() {
cd "$_name-$pkgver"
./configure --program-suffix='-matrix' --prefix="$pkgdir/usr"
make
}
package() {
cd "$_name-$pkgver"
make install
}
|