45 lines
1 KiB
RPMSpec
45 lines
1 KiB
RPMSpec
|
Name: magit
|
||
|
Version: @VERSION@
|
||
|
Release: 1%{?dist}
|
||
|
Summary: An Emacs Extension for Git
|
||
|
BuildArch: noarch
|
||
|
Group: Development/Tools
|
||
|
License: GPLv3
|
||
|
URL: http://zagadka.vm.bytemark.co.uk/magit
|
||
|
Source0: %{url}/%{name}-%{version}.tar.gz
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||
|
|
||
|
BuildRequires: texinfo, autoconf, automake, emacs
|
||
|
Requires: git, emacs
|
||
|
|
||
|
%description
|
||
|
Magit is an interface to the version control system Git, implemented
|
||
|
as an extension to Emacs.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
%configure --prefix=/usr --sysconfdir=/etc --with-site-start=/usr/share/emacs/site-lisp/site-start.d
|
||
|
make %{?_smp_mflags}
|
||
|
|
||
|
|
||
|
%install
|
||
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||
|
rm $RPM_BUILD_ROOT/usr/share/info/dir
|
||
|
|
||
|
%clean
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root,-)
|
||
|
/usr/share/emacs/site-lisp/site-start.d/50magit.el
|
||
|
/usr/share/emacs/site-lisp/magit.el
|
||
|
/usr/share/emacs/site-lisp/magit.elc
|
||
|
%doc README NEWS COPYING AUTHORS
|
||
|
/usr/share/info/magit.info.gz
|
||
|
|
||
|
%changelog
|
||
|
* Sun Mar 14 2010 Ben Walton <bwalton@artsci.utoronto.ca>
|
||
|
- Initial spec file creation.
|