18 lines
425 B
Plaintext
18 lines
425 B
Plaintext
# Description: Directory content manager
|
|
# URL: http://www.kernel.org/pub/software/scm/git/
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: openssl, curl, perl, python
|
|
# Nice to have: tk
|
|
|
|
name=git
|
|
version=1.3.3
|
|
release=1
|
|
source=(http://www.kernel.org/pub/software/scm/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
make CFLAGS="$CFLAGS" prefix=/usr
|
|
make prefix=/usr DESTDIR=$PKG install
|
|
}
|