tilda-vl.spec 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. %define ver 1.2.2
  2. %define rel 1
  3. Summary: a Gtk based drop down terminal for Linux and Unix
  4. Name: tilda
  5. Version: %{ver}
  6. Release: %{rel}%{?_dist_release}
  7. License: GPLv2
  8. Group: Applications/Accessories
  9. URL: https://github.com/lanoxx/tilda
  10. #https://github.com/lanoxx/tilda/archive/tilda-%{version}.tar.gz
  11. Source0: %{name}-%{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildRequires: gtk3-devel
  14. BuildRequires: vte290-devel
  15. BuildRequires: libconfuse-devel
  16. %description
  17. The specialities of Tilda are that it does not behave like a normal
  18. window but instead it can be pulled up and down from the top of the
  19. screen with a special hotkey. Additionally Tilda is highly configurable.
  20. It is possible to configure the hotkeys for keybindings, change the
  21. appearance and many options that affect the behavior of Tilda.
  22. The screen shots below show some of the options that Tilda provides.
  23. %prep
  24. %setup -q -n %{name}-%{name}-%{version}
  25. ./autogen.sh
  26. %configure
  27. %build
  28. make
  29. %install
  30. rm -rf $RPM_BUILD_ROOT
  31. %makeinstall
  32. %find_lang %{name}
  33. %clean
  34. rm -rf $RPM_BUILD_ROOT
  35. %check
  36. make check
  37. %files -f %{name}.lang
  38. %defattr(-,root,root,-)
  39. %doc README.md AUTHORS COPYING ChangeLog HACKING.md NEWS TODO.md
  40. %{_bindir}/tilda
  41. %{_datadir}/applications/tilda.desktop
  42. %{_datadir}/pixmaps/tilda.png
  43. %changelog
  44. * Sun Mar 22 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 1.2.2-1
  45. - Initial build.