31 lines
788 B
TOML
31 lines
788 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--disable-static",
|
|
"--disable-kill",
|
|
"--enable-watch8bit",
|
|
"--without-systemd"
|
|
]
|
|
post_configure = [ "sed -i 's/^-e };$/};/' local/capnames.h" ]
|
|
# provided by uutils
|
|
post_install = [ "rm $DESTDIR/usr/bin/uptime", "rm $DESTDIR/usr/share/man/man1/uptime.1" ]
|
|
skip_tests = true
|
|
|
|
[dependencies]
|
|
build = ["ncurses"]
|
|
runtime = ["glibc"]
|
|
|
|
[package]
|
|
description = "programs for monitoring processes"
|
|
homepage = "https://gitlab.com/procps-ng/procps"
|
|
license = "GPL-2.0-Only"
|
|
name = "procps-ng"
|
|
version = "4.0.6"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "67bea6fbc3a42a535a0230c9e891e5ddfb4d9d39422d46565a2990d1ace15216"
|
|
url = "https://sourceforge.net/projects/procps-ng/files/Production/procps-ng-$version.tar.xz"
|