]> git.pld-linux.org Git - SPECS.git/blob - git-home-history.spec
SPECS updated Sun 1 Aug 20:13:02 CEST 2021
[SPECS.git] / git-home-history.spec
1 Summary:        a tool to track the history and make backups of your home directory
2 Name:           git-home-history
3 # AC_INIT(ghh, 0.1)
4 Version:        0.1
5 Release:        0.1
6 License:        GPL v2
7 Group:          Applications
8 Source0:        https://github.com/jeanfric/git-home-history/archive/master/%{name}-%{version}.tar.gz
9 # Source0-md5:  3b55c3ceadc45dc5c1bd70b8d1861f2a
10 URL:            http://heimdalsgata.com/jeanfric/ghh/
11 BuildRequires:  asciidoc
12 BuildRequires:  docbook-dtd45-xml
13 BuildRequires:  gnome-common
14 BuildRequires:  gnome-doc-utils
15 BuildRequires:  gtk+2-devel
16 BuildRequires:  intltool >= 0.25
17 BuildRequires:  libgnome-devel
18 BuildRequires:  libtool
19 BuildRequires:  rpm-pythonprov
20 BuildRequires:  rpmbuild(macros) >= 1.714
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 git-home-history is a tool that simplifies keeping track of changes
25 you make in your home directory. It is based on the excellent Git
26 toolkit. git-home-history stores changes you make to your files as
27 time goes by and can thus provides an easy way to go back to earlier
28 versions and see changes you made. You can also use it to easily
29 create backup archives that contain the whole history of your home.
30
31 %prep
32 %setup -qc
33 mv git-home-history-master/* .
34
35 %build
36 ./autogen.sh
37 %configure
38 %{__make}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42 %{__make} install \
43         DESTDIR=$RPM_BUILD_ROOT
44
45 %py_postclean
46
47 # no -devel package
48 %{__rm} $RPM_BUILD_ROOT%{_pkgconfigdir}/ghh.pc
49
50 %clean
51 rm -rf $RPM_BUILD_ROOT
52
53 %files
54 %defattr(644,root,root,755)
55 %doc AUTHORS ChangeLog NEWS README TODO
56 %attr(755,root,root) %{_bindir}/git-home-history
57 %attr(755,root,root) %{_bindir}/gtk-ghh
58 %attr(755,root,root) %{_bindir}/gtk-ghh-commit
59 %attr(755,root,root) %{_bindir}/gtk-ghh-restore
60 %{_mandir}/man1/git-home-history.1*
61 %{_datadir}/ghh
62 %dir %{_libdir}/ghh
63 %attr(755,root,root) %{_libdir}/ghh/ghh-service
64 %{py_sitescriptdir}/ghh
This page took 0.299402 seconds and 3 git commands to generate.