Some fixes

This commit is contained in:
Befator 2025-10-21 18:09:47 +02:00
parent 306089c1cf
commit 6fc8da7c2e
4 changed files with 16 additions and 8 deletions

View File

@ -2,7 +2,7 @@
pkgname=findutils
pkgver=4.10.0
pkgrel=2
pkgrel=3
pkgdesc="GNU utilities to locate files"
arch=('i686' 'x86_64')
license=('GPL3')
@ -44,14 +44,16 @@ build() {
--without-libiconv-prefix \
--without-libintl-prefix \
"${extra_config[@]}" \
DEFAULT_ARG_SIZE="(32u*1024)"
DEFAULT_ARG_SIZE="(32u*1024)" \
gl_cv_clean_version_stddef=yes
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check
#19 Test Failures... wird schon gehen...
#make check
}
package() {

View File

@ -2,7 +2,7 @@
pkgname=inetutils
pkgver=2.6
pkgrel=1
pkgrel=2
pkgdesc="A collection of common network programs."
arch=('i686' 'x86_64')
url="https://www.gnu.org/software/inetutils/"
@ -51,6 +51,8 @@ build() {
# this isn't set in ./configure but needed to get a valid Makefile -- don't ask me...
export EXEEXT=.exe
CFLAGS+=" -std=gnu17"
../${pkgbase}-${pkgver}/configure --prefix=/usr \
--build=${CHOST} \
--libexec=/usr/bin \
@ -75,7 +77,8 @@ build() {
--disable-inetd --disable-whois \
--disable-uucpd --disable-ifconfig \
--enable-dnsdomainname \
--disable-traceroute
--disable-traceroute \
gl_cv_clean_version_stddef=yes
make
}

View File

@ -2,7 +2,7 @@
pkgname=time
pkgver=1.9
pkgrel=3
pkgrel=4
pkgdesc="Utility for monitoring a program's use of system resources"
url='https://www.gnu.org/directory/time.html'
msys2_references=(
@ -23,6 +23,8 @@ prepare() {
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
CFLAGS+=" -std=gnu17"
./configure \
--prefix=/usr \
--infodir=/usr/share/info \

View File

@ -2,7 +2,7 @@
pkgname=wget
pkgver=1.25.0
pkgrel=1
pkgrel=2
pkgdesc="A network utility to retrieve files from the Web"
arch=('i686' 'x86_64')
url="https://www.gnu.org/software/wget/"
@ -47,7 +47,8 @@ build() {
--without-libintl-prefix \
--without-libpth-prefix \
--without-libgnutls-prefix \
--without-metalink
--without-metalink \
gl_cv_clean_version_stddef=yes
make
}