[tilda] Initial import (#1153302)

hannes hannes at fedoraproject.org
Mon Oct 20 18:22:34 UTC 2014


commit 9eaa2bdb84e5672c13f0a7496f3b80bbf3954f20
Author: hannes <hannes at fedoraproject.org>
Date:   Mon Oct 20 20:07:57 2014 +0200

    Initial import (#1153302)

 .gitignore   |    1 +
 dead.package |    1 -
 sources      |    1 +
 tilda.spec   |   83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 85 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1aba53f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/tilda-1.2.1.tar.gz
diff --git a/sources b/sources
new file mode 100644
index 0000000..1e9e8f2
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+4d10d0fa2954abd0b6c214e708dae0b4  tilda-1.2.1.tar.gz
diff --git a/tilda.spec b/tilda.spec
new file mode 100644
index 0000000..2e23718
--- /dev/null
+++ b/tilda.spec
@@ -0,0 +1,83 @@
+Name:           tilda
+Version:        1.2.1
+Release:        1%{?dist}
+Summary:        A Gtk based drop down terminal for Linux and Unix
+
+Group:          Applications/System
+License:        GPLv2+
+URL:            http://github.com/lanoxx/tilda 
+Source0:        https://github.com/lanoxx/%{name}/archive/%{name}-%{version}.tar.gz
+
+BuildRequires:	desktop-file-utils
+BuildRequires:	autoconf
+BuildRequires:	automake
+BuildRequires:	gettext-devel
+BuildRequires:	glib2-devel
+BuildRequires:	libconfuse-devel
+BuildRequires:	libX11-devel
+BuildRequires:	libXrandr-devel
+BuildRequires:	libXt-devel
+BuildRequires:	vte3-devel
+
+
+%description
+Tilda is a Linux terminal taking after the likeness of many classic terminals
+from first person shooter games, Quake, Doom and Half-Life (to name a few),
+where the terminal has no border and is hidden from the desktop until a key is
+pressed.
+
+%prep
+%setup -q -n %{name}-%{name}-%{version}
+
+%build
+autoreconf -fi
+%configure
+make %{?_smp_mflags}
+
+%install
+mkdir -p %{buildroot}%{_datadir}/%{name}
+
+make install DESTDIR=%{buildroot}
+desktop-file-install --vendor=""                               \
+        --dir=%{buildroot}%{_datadir}/applications             \
+        --mode 0644                                            \
+        --remove-category="Application"                        \
+        %{buildroot}%{_datadir}/applications/%{name}.desktop
+
+install -D -p -m 644 %{name}.png \
+        %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
+
+%find_lang %{name}
+
+
+
+%post
+/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun
+if [ $1 -eq 0 ] ; then
+    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+
+%files -f %{name}.lang
+%doc AUTHORS COPYING README.md ChangeLog TODO.md
+%{_bindir}/%{name}
+%{_datadir}/%{name}
+%{_datadir}/pixmaps/%{name}.png
+%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
+%{_datadir}/applications/%{name}.desktop
+
+%changelog
+* Thu Oct 16 2014 Johannes Lips <hannes at fedoraproject.org> - 1.2.1-1
+- update to upstream version 1.2.1
+
+* Thu Oct 16 2014 Johannes Lips <hannes at fedoraproject.org> - 1.2-1
+- update to upstream version 1.2
+
+* Sun Sep 14 2014 Johannes Lips <hannes at fedoraproject.org> - 1.1.13-1
+- Initial Release


More information about the scm-commits mailing list