cruxports/ncdu/Pkgfile

19 lines
526 B
Plaintext
Raw Normal View History

2022-02-05 20:39:19 +00:00
# Description: disk usage analyzer, rewritten in Zig
# URL: https://dev.yorhel.nl/ncdu
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: ncurses
name=ncdu
2023-09-20 01:26:04 +00:00
version=2.3
2022-02-05 20:39:19 +00:00
release=1
2022-12-23 13:44:10 +00:00
source=(https://dev.yorhel.nl/download/$name-$version-linux-x86_64.tar.gz
2024-03-30 12:36:20 +00:00
https://code.blicky.net/yorhel/$name/raw/branch/zig/$name.1)
2022-02-05 20:39:19 +00:00
build () {
2024-03-30 12:36:20 +00:00
mkdir -p $PKG/usr/bin
mkdir -p $PKG/usr/share/man/man1
2022-02-05 20:39:19 +00:00
2024-03-30 12:36:20 +00:00
install -m 0755 $name $PKG/usr/bin
install -m 0644 $name.1 $PKG/usr/share/man/man1/$name.1
2022-02-05 20:39:19 +00:00
}