Built git

This commit is contained in:
Alexander Hill 2026-01-18 21:21:07 -05:00
parent 3ca3b09681
commit 6aa48ac358
2 changed files with 7 additions and 5 deletions

View File

@ -24,7 +24,7 @@ Definitions:
| `flex` | Yes | Yes | | `flex` | Yes | Yes |
| `fortune-mod` | Yes | Yes | | `fortune-mod` | Yes | Yes |
| `gettext` | Yes | Yes | | `gettext` | Yes | Yes |
| `git` | Yes | | `git` | Yes | Yes |
| `grep` | Yes | Yes | | `grep` | Yes | Yes |
| `groff` | Yes | Yes | | `groff` | Yes | Yes |
| `gzip` | Yes | Yes | | `gzip` | Yes | Yes |

View File

@ -7,8 +7,10 @@ SRC_VERSION="2.52.0"
build() { build() {
tar xf ../$SRC_FILENAME tar xf ../$SRC_FILENAME
cd git-$SRC_VERSION/ cd git-$SRC_VERSION/
# TODO: What breaks if I pass NO_CURL or NO_EXPAT? ~ahill ./configure $TT_AUTOCONF_COMMON --without-tcltk
make -j $TT_PROCS NO_REGEX=NeedsStartEnd NO_TCLTK=1 make -j $TT_PROCS NO_GITWEB=YesPlease NO_PERL=YesPlease NO_REGEX=NeedsStartEnd
# TODO: How do we tell git where to install components? ~ahill make -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR NO_GITWEB=YesPlease NO_PERL=YesPlease NO_REGEX=NeedsStartEnd
make -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR NO_REGEX=NeedsStartEnd NO_TCLTK=1 # Another package ignoring proper paths? Unacceptable! ~ahill
mv $TT_INSTALLDIR/share/* $TT_INSTALLDIR/usr/share/
rm -rf $TT_INSTALLDIR/share
} }