blob: a1f9e2101873712cb7119d77855cb118438cced3 (
plain)
1 # Description: Git web interface written in C
2 # URL: http://hjemli.net/git/cgit/
3 # Maintainer: Lucas Hazel, lucas at die dot net dot au
4 # Depends on: git
5
6 gitversion="1.6.6"
7
8 name=cgit
9 version=0.8.3.1
10 release=1
11 source=(http://hjemli.net/git/cgit/snapshot/$name-$version.tar.bz2
12 http://www.kernel.org/pub/software/scm/git/git-$gitversion.tar.bz2)
13
14 build() {
15 cd $name-$version
16 rm -rf git
17 ln -s $SRC/git-$gitversion git
18 sed "s/GIT_VER = .*/GIT_VER = $gitversion/" -i Makefile
19 make DESTDIR=$PKG install
20 }
|