update to LFS 12.4 #1

Merged
wyj merged 146 commits from dev into main 2025-12-22 07:15:10 -05:00
Showing only changes of commit 2abc8d8714 - Show all commits

27
lfs/make-4.4.1.PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
pkgname=make
pkgver=4.4.1
pkgdesc="GNU make utility to maintain groups of programs"
arch=('x86_64')
homepage="https://www.gnu.org/software/make"
license=('GPL3')
sources=("${pkgname}-${pkgver}.tar.gz")
urls=("https://ftp.gnu.org/gnu/${pkgname}/${sources[0]}")
md5sums=("c8469a3713cbbe04d955d4ae4be23eeb")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr
make
}
src_check() {
chown -R leaf .
su leaf -c "PATH=$PATH make check"
}
src_install() {
make DESTDIR="${pkgdir}" install
}