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,24 @@
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
SRC_FILENAME="musl_fts-1.2.7.tar.gz"
SRC_HASH="49ae567a96dbab22823d045ffebe0d6b14b9b799925e9ca9274d47d26ff482a6"
SRC_NAME="musl-fts"
SRC_URL="https://github.com/void-linux/musl-fts/archive/refs/tags/v1.2.7.tar.gz"
SRC_VERSION="1.2.7"
build() {
tar xf ../$SRC_FILENAME
cd musl-fts-*/
# TODO: Can we rewrite this to not rely on libtool going forward? ~ahill
./bootstrap.sh
./configure $TT_AUTOCONF_COMMON --disable-static
make -j $TT_PROCS
}
clean() {
rm -rf musl-fts-*/
}
package() {
cd musl-fts-*/
make -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
}