update: move lfs/* to lfs-12.2-systemd/

This commit is contained in:
2024-11-28 00:58:22 -05:00
parent c920403fd2
commit 47c22478ed
22 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
pkgname=m4
pkgver=1.4.19
pkgdesc="The GNU macro processor"
homepage="https://www.gnu.org/software/m4"
license=('GPL3')
sources=("$pkgname-$pkgver.tar.xz")
urls=("https://ftp.gnu.org/gnu/m4/$pkgname-$pkgver.tar.xz")
md5sums=("0d90823e1426f1da2fd872df0311298d")
src_prepare() {
tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr
make
}
src_check() {
make check
}
src_install() {
make prefix="${pkgdir}"/usr install
}