21 lines
501 B
Bash
21 lines
501 B
Bash
# Template file for 'rover'
|
|
pkgname=rover
|
|
version=1.0.0
|
|
revision=1
|
|
makedepends="ncurses-devel"
|
|
short_desc="Simple file browser for the terminal"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="Public Domain"
|
|
homepage="https://github.com/lecram/rover"
|
|
distfiles="https://github.com/lecram/rover/archive/v${version}.tar.gz"
|
|
checksum=f2e6629107f80cc71e64cf1f2c79afe8c76d3aa0d53074bd221e5ddcda895a4e
|
|
|
|
do_build() {
|
|
make ${makejobs} LDLIBS="-lncursesw"
|
|
}
|
|
|
|
do_install() {
|
|
vbin rover
|
|
vman rover.1
|
|
}
|