diff --git a/pkg.info b/pkg.info index b68847c..ec40941 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,10 @@ name: procps-ng description: System monitoring utilities version: 4.0.4 +revision: 2 url: https://gitlab.com/procps-ng/procps/ license: GPL,LGPL architecture: any depends: ["glibc"] -make_depends: ["bash","binutils","coreutils","gcc","glibc","make","ncurses","pkgconf","systemd"] +make_depends: ["bash","binutils","coreutils","gcc","glibc","make","ncurses","pkgconf"] type: source diff --git a/source.sh b/source.sh index c879246..67289a1 100644 --- a/source.sh +++ b/source.sh @@ -15,12 +15,12 @@ prepare() { # The build function is executed in the source directory # This function is used to compile the source code build() { - ./configure --prefix=/usr \ - --docdir=/usr/share/doc/procps-ng \ - --disable-static \ - --disable-kill \ - --with-systemd - make src_w_LDADD='$(LDADD) -lsystemd' + ./configure --prefix=/usr \ + --docdir=/usr/share/doc/procps-ng \ + --disable-static \ + --disable-kill \ + --without-systemd + make } # The check function is executed in the source directory