blob: 9180f900d7c9069b7ebdaccc6572d472d3893b36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Luke R. <g4jc@openmailbox.org> GPG: rsa4096/3EAE8697
pkgname=braincurses
pkgver=1.1.0
pkgrel=1
pkgdesc="A version of the classic game Mastermind"
arch=('x86_64' 'i686')
url="https://github.com/bderrly/braincurses"
license=('GPL2')
depends=('ncurses')
source=("https://github.com/bderrly/$pkgname/archive/$pkgver.tar.gz")
sha512sums=('7f27512c321ca2f2c3b38a891fc4e1ab0e2371412ada827f69dc262e27abbf750861b7ab859d0d8407ba25e4814ea6c33bc36a2c8ccdeda4977fa4bebb5457cd')
build() {
cd $pkgname-$pkgver
make
}
package() {
cd $pkgname-$pkgver
install -vDm 0755 braincurses $pkgdir/usr/bin/braincurses
}
|