tig: initial import

This commit is contained in:
Mark Rosenstand 2006-10-30 20:36:17 +01:00
parent efb1b8a0f0
commit 756b06ce08
3 changed files with 27 additions and 0 deletions

8
tig/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/tig
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/tig.1.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/tigrc.5.gz

1
tig/.md5sum Normal file
View File

@ -0,0 +1 @@
fab4a728d13b8eb0643a1f5c26c0b8c9 tig-0.5.tar.gz

18
tig/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Repository browser for git
# URL: http://jonas.nitro.dk/tig/
# Maintainer: Mark Rosenstand, mark at borkware dot net
# Depends on: git, ncurses
name=tig
version=0.5
release=1
source=(http://jonas.nitro.dk/tig/releases/tig-$version.tar.gz)
build() {
cd tig-$version
make CFLAGS="$CFLAGS"
make DESTDIR=$PKG prefix=/usr install
mkdir -p $PKG/usr/man/man{1,5}
cp *.1 $PKG/usr/man/man1
cp *.5 $PKG/usr/man/man5
}