26 lines
526 B
Plaintext
26 lines
526 B
Plaintext
# Tanım: Distributed version control system designed to handle small to very large projects.
|
||
# URL: http://git-scm.com/
|
||
# Paketçi: milisarge
|
||
# Gerekler:
|
||
|
||
name=git
|
||
version=2.7.1
|
||
release=1
|
||
|
||
source=( https://www.kernel.org/pub/software/scm/$name/$name{,-manpages,-htmldocs}-$version.tar.xz)
|
||
run=(openssh)
|
||
|
||
derle() {
|
||
cd $name-$version
|
||
|
||
./configure --prefix=/usr \
|
||
--libexecdir=/usr/lib \
|
||
--with-gitconfig=/etc/gitconfig \
|
||
--without-python
|
||
|
||
make
|
||
make DESTDIR=$PKG install
|
||
|
||
find $PKG -type f -name perllocal.pod -exec rm {} \;
|
||
}
|