Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
add configure step to git recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan committed Feb 18, 2016
1 parent c9b2a3e commit a4ce51c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions git/build.sh
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
#!/bin/bash

export C_INCLUDE_PATH="$PREFIX/include"
export LIBRARY_PATH="$PREFIX/lib"
export C_INCLUDE_PATH="${PREFIX}/include"
export LIBRARY_PATH="${PREFIX}/lib"

# NO_TCLTK disables git-gui
# NO_PERL disables all perl-based utils:
# git-instaweb, gitweb, git-cvsserver, git-svn
# /ref http://www.spinics.net/lists/git/msg99803.html
# NO_GETTEXT disables internationalization (localized message translations)
# NO_INSTALL_HARDLINKS uses symlinks which makes the package 85MB slimmer (8MB instead of 93MB!)
make configure
./configure --prefix="${PREFIX}"
make \
--jobs="$CPU_COUNT" \
prefix="$PREFIX" \
NO_TCLTK=1 \
NO_PERL=1 \
NO_GETTEXT=1 \
Expand Down

0 comments on commit a4ce51c

Please sign in to comment.