More packages

This commit is contained in:
2025-09-20 23:37:57 +01:00
parent 432715516f
commit 1eec97a688
7 changed files with 103 additions and 9 deletions

View File

@@ -12,11 +12,11 @@ configure() {
build() {
echo "Building $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
make -j ${NCPU}
make -j ${NCPU} LEX=flex VERSION=${VERSION}
}
install() {
echo "Installing $PACKAGE to ${DESTDIR}"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
make install PREFIX="${DESTDIR}"
make install DESTDIR="${DESTDIR}" LEX=flex VERSION=${VERSION}
}