19 lines
546 B
Bash
19 lines
546 B
Bash
|
# Template file for 'sudoku'
|
||
|
pkgname=sudoku
|
||
|
version=1.0.5
|
||
|
revision=1
|
||
|
build_style=gnu-makefile
|
||
|
makedepends="ncurses-devel"
|
||
|
short_desc="Sudoku solver based on the initial work of Michael Kennett"
|
||
|
maintainer="Nick Hahn <nick.hahn@hotmail.de>"
|
||
|
license="Public Domain"
|
||
|
homepage="https://github.com/cinemast/sudoku"
|
||
|
distfiles="https://github.com/cinemast/sudoku/archive/v${version}.tar.gz"
|
||
|
checksum=3ce6d9b237546d4ac7cdb7a6bb0e47d5c99e696a710b8935bce40dc706d32ff2
|
||
|
|
||
|
do_install() {
|
||
|
vbin sudoku
|
||
|
vman sudoku.6
|
||
|
vinstall template 644 /usr/share/sudoku/
|
||
|
}
|