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

View File

@@ -0,0 +1,21 @@
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
SRC_HASH="ba885c1319578d6c94d46e9b0dceb4014caafe2490e437a0dbca3f270a223f5a"
SRC_NAME="autoconf"
SRC_URL="https://ftp.gnu.org/gnu/autoconf/autoconf-2.72.tar.xz"
SRC_VERSION="2.72"
build() {
tar xf ../$SRC_FILENAME
cd autoconf-*/
./configure $TT_AUTOCONF_COMMON
make -O -j $TT_PROCS
}
clean() {
rm -rf autoconf-*/
}
package() {
cd autoconf-*/
make -O -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
}