This repository has been archived on 2022-01-17. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-08-15 00:27:15 +02:00
|
|
|
name: git
|
|
|
|
version: 2.9.5
|
2019-10-17 10:39:11 +02:00
|
|
|
release: 3
|
2019-08-15 00:27:15 +02:00
|
|
|
sources: https://mirrors.edge.kernel.org/pub/software/scm/git/git-%{version}.tar.xz
|
|
|
|
|
2019-08-25 19:53:20 +02:00
|
|
|
build-dependencies:
|
|
|
|
- curl
|
2019-10-17 10:39:11 +02:00
|
|
|
- libressl-dev
|
2019-08-15 00:27:15 +02:00
|
|
|
- perl
|
|
|
|
- autoconf
|
|
|
|
- automake
|
2019-09-05 23:55:50 +02:00
|
|
|
- gettext
|
2019-08-25 19:53:20 +02:00
|
|
|
|
|
|
|
dependencies:
|
2019-08-15 00:27:15 +02:00
|
|
|
- binutils
|
|
|
|
|
|
|
|
# -i prevents the use of gettext (msgfmt)
|
|
|
|
options:
|
2019-09-05 23:55:50 +02:00
|
|
|
- make: -i -j1
|
|
|
|
- make install: -i
|
2019-08-15 00:27:15 +02:00
|
|
|
|
|
|
|
@configure
|
|
|
|
cd %{name}-%{version}
|
|
|
|
make distclean
|
|
|
|
autoconf
|
2019-09-05 23:55:50 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=%{prefix} \
|
2019-10-17 10:39:11 +02:00
|
|
|
--with-curl \
|
2019-09-05 23:55:50 +02:00
|
|
|
--without-tcltk \
|
|
|
|
--disable-nls \
|
|
|
|
--enable-openssl
|