Added autoconf, automake, bsdutils, libtool, musl-fts, perl, and pkgconf, and replaced m4

This commit is contained in:
Alexander Hill
2025-11-27 18:46:03 -05:00
parent 38329ef5fd
commit 679f263c2f
12 changed files with 327 additions and 7 deletions

21
sources/perl/perl.spec Normal file
View File

@@ -0,0 +1,21 @@
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
SRC_HASH="e093ef184d7f9a1b9797e2465296f55510adb6dab8842b0c3ed53329663096dc"
SRC_NAME="perl"
SRC_URL="https://www.cpan.org/src/5.0/perl-5.42.0.tar.gz"
SRC_VERSION="5.42.0"
build() {
tar xf ../$SRC_FILENAME
cd perl-*/
./Configure -des
make -O -j $TT_PROCS
}
clean() {
rm -rf perl-*/
}
package() {
cd perl-*/
make -O -j $TT_PROCS DESTDIR=$TT_INSTALLDIR
}