From 0582b0f8cd26678e741a06ba2ab42cc47a7c689a Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Sun, 16 Nov 2025 21:43:49 +0100 Subject: moved non LFS tessera to extra/ --- src/tesserae/extra/git.nim | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/tesserae/extra/git.nim (limited to 'src/tesserae/extra/git.nim') diff --git a/src/tesserae/extra/git.nim b/src/tesserae/extra/git.nim new file mode 100644 index 0000000..b863f2a --- /dev/null +++ b/src/tesserae/extra/git.nim @@ -0,0 +1,26 @@ +import .. / lapis + +tessera "git": + source: "https://www.kernel.org/pub/software/scm/git/git-2.50.1.tar.xz" + patches: @[""] + dependencies: @[ + "curl", + "fcron", + "gnupg", + "iosocket_ssl", + "openssh", + "pcre2", + "valgrind", + ] + build: @[ + """ + ./configure --prefix=/usr \ + --with-gitconfig=/etc/gitconfig \ + --with-python=python3 + """, + "make", + "make man", + "make perllibdir=/usr/lib/perl5/5.42/site_perl install", + "make install-man" + ] + result: "git" -- cgit v1.2.3