milis/talimatname/genel/git/talimat

26 lines
533 B
Plaintext
Raw Normal View History

2016-02-24 01:27:23 +01:00
# Description: Distributed version control system designed to handle small to very large projects.
# URL: http://git-scm.com/
2017-09-25 04:27:47 +02:00
# Packager: milisarge
# Depends on:
2016-02-24 01:27:23 +01:00
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)
build() {
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 {} \;
}