aboutsummaryrefslogtreecommitdiffstats
path: root/qelly
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2014-11-22 03:44:59 +0800
committerTing-Wei Lan <lantw44@gmail.com>2014-11-22 03:44:59 +0800
commitecdda1d3ef9f7513d6b02f0802672771733311bd (patch)
tree8635d8946431e5875887f8a45c2a8a6a65ab6c9c /qelly
parent0639cf607b8d1d4bb8926f088ad7c3867984c475 (diff)
downloadcopr-rpm-spec-ecdda1d3ef9f7513d6b02f0802672771733311bd.tar
copr-rpm-spec-ecdda1d3ef9f7513d6b02f0802672771733311bd.tar.gz
copr-rpm-spec-ecdda1d3ef9f7513d6b02f0802672771733311bd.tar.bz2
copr-rpm-spec-ecdda1d3ef9f7513d6b02f0802672771733311bd.tar.lz
copr-rpm-spec-ecdda1d3ef9f7513d6b02f0802672771733311bd.tar.xz
copr-rpm-spec-ecdda1d3ef9f7513d6b02f0802672771733311bd.tar.zst
copr-rpm-spec-ecdda1d3ef9f7513d6b02f0802672771733311bd.zip
Move packages in the addpkgs to its own project and update guix to 0.8
Diffstat (limited to 'qelly')
-rw-r--r--qelly/INSTALL.md1
-rw-r--r--qelly/README.md1
-rw-r--r--qelly/qelly/qelly.spec50
3 files changed, 52 insertions, 0 deletions
diff --git a/qelly/INSTALL.md b/qelly/INSTALL.md
new file mode 100644
index 0000000..24a56fc
--- /dev/null
+++ b/qelly/INSTALL.md
@@ -0,0 +1 @@
+Run `Qelly` and it works!
diff --git a/qelly/README.md b/qelly/README.md
new file mode 100644
index 0000000..a400edd
--- /dev/null
+++ b/qelly/README.md
@@ -0,0 +1 @@
+[Qelly BBS client](https://github.com/uranusjr/Qelly) packages for Fedora
diff --git a/qelly/qelly/qelly.spec b/qelly/qelly/qelly.spec
new file mode 100644
index 0000000..8f8ceb9
--- /dev/null
+++ b/qelly/qelly/qelly.spec
@@ -0,0 +1,50 @@
+Name: qelly
+Version: 1.0
+Release: 0.1.beta%{?dist}
+Summary: Qelly is a Qt port of Nally
+
+%global real_name Qelly
+%global real_version 1.0b
+
+Group: Applications/Internet
+License: GPLv3
+URL: https://github.com/uranusjr/Qelly
+Source0: https://github.com/uranusjr/Qelly/archive/v%{real_version}.tar.gz
+
+BuildRequires: qt-devel, libqxt-devel
+Requires: qt, libqxt
+
+%description
+Qelly (pronounced as the English name "Kelly") is a Qt port of Nally, the
+open-source Telnet/SSH client for Mac OS X. Qt is chosen to be the underlying
+framework of this application bacause it enables us to build a GUI-based
+application with a native-looking interface for every operating system with
+minimal effort. The project is currently only a Qt version of Nally (hence the
+name), but more features from other Telnet/SSH clients are also planned.
+
+%prep
+%setup -q -n %{real_name}-%{real_version}
+
+%build
+qmake-qt4
+make %{?_smp_mflags}
+
+
+%install
+mkdir -p %{buildroot}/usr/bin
+install -m 755 "bin/Qelly" "%{buildroot}/usr/bin"
+
+%files
+%defattr(-,root,root,-)
+%{_bindir}/Qelly
+%doc AUTHORS CHANGES LICENSE README.md
+
+%changelog
+* Tue Dec 17 2013 Ting-Wei Lan <lantw44@gmail.com>
+- Update to 1.0b (https://github.com/uranusjr/Qelly/releases/tag/v1.0b)
+
+* Mon Oct 21 2013 Ting-Wei Lan <lantw44@gmail.com>
+- Update to 1.0a3 (https://github.com/uranusjr/Qelly/releases/tag/v1.0a3)
+
+* Thu Oct 17 2013 Ting-Wei Lan <lantw44@gmail.com>
+- Initial packaging