SHA256
1
0
forked from pool/tig
tig/tig.spec

74 lines
1.9 KiB
RPMSpec
Raw Normal View History

#
# spec file for package tig (Version 0.6)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: tig
License: GNU General Public License (GPL)
Group: Development/Tools/Version Control
BuildRequires: ncurses-devel
Requires: git-core
Autoreqprov: on
Version: 0.6
Release: 1
Summary: A Program to Generate Tag Files for Use with vi and Other Editors
URL: http://jonas.nitro.dk/tig/
Source0: http://jonas.nitro.dk/tig/releases/%{name}-%{version}.tar.gz
Patch0: tig-fix-build.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Tig is a git repository browser that additionally can act as a pager
for output rom various git commands.
When browsing repositories, it uses the underlying git commands to
present the user with various views, such as summarized revision log
and showing the commit with the log message, diffstat, and the diff.
Using it as a pager, it will display input from stdin and colorize it.
Authors:
--------
Jonas Fonseca <fonseca@diku.dk>
%prep
%setup
%patch0 -p1
%build
CC=gcc
CFLAGS="$RPM_OPT_FLAGS -Wall"
export CFLAGS CC
make prefix=%{_prefix} mandir=%{_mandir}
%install
make DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} mandir=%{_mandir} install
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1 \
$RPM_BUILD_ROOT/%{_mandir}/man5
gzip tig.1
gzip tigrc.5
install -m 0644 tig.1.gz $RPM_BUILD_ROOT/%{_mandir}/man1
install -m 0644 tigrc.5.gz $RPM_BUILD_ROOT/%{_mandir}/man5
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_bindir}/tig
%{_mandir}/man1/*
%{_mandir}/man5/*
%changelog
* Sun May 13 2007 - bwalle@suse.de
- initial package