blob: 6693dcbd855620f08e37eaf3709c714bf57f8b43 (
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
|
#!/bin/mkpkg
# description="Terminal file browser with heavy customization"
# url="https://github.com/jarun/nnn"
name=nnn
version=5.3
release=1
depends=(ncurses)
makedeps=(musl-fts)
source=("https://github.com/jarun/nnn/releases/download/v${version}/nnn-v${version}.tar.gz")
sha256sums=(
"c626d57d0aaa5effe04a7e8c24ec9000bc3aca012461b821ecd3c81f5131bb6d"
)
build() {
cd "nnn-${version}"
make PREFIX=/usr O_NOX11=1
make PREFIX=/usr DESTDIR="$PKG" install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
|