diff options
author | LAN-TW <lantw44@gmail.com> | 2013-10-17 01:58:07 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2013-10-17 01:58:07 +0800 |
commit | 4ffdc68541a8b9e58c32b58627fce5cb1cce00c5 (patch) | |
tree | 9e395d5e77a830eb1d5fa701845ce436418a4719 /qelly | |
parent | 8fccf4d15ee8a31d44e8aecb5b3d606ae554dcb3 (diff) | |
download | copr-rpm-spec-4ffdc68541a8b9e58c32b58627fce5cb1cce00c5.tar copr-rpm-spec-4ffdc68541a8b9e58c32b58627fce5cb1cce00c5.tar.gz copr-rpm-spec-4ffdc68541a8b9e58c32b58627fce5cb1cce00c5.tar.bz2 copr-rpm-spec-4ffdc68541a8b9e58c32b58627fce5cb1cce00c5.tar.lz copr-rpm-spec-4ffdc68541a8b9e58c32b58627fce5cb1cce00c5.tar.xz copr-rpm-spec-4ffdc68541a8b9e58c32b58627fce5cb1cce00c5.tar.zst copr-rpm-spec-4ffdc68541a8b9e58c32b58627fce5cb1cce00c5.zip |
qelly: 1.0 alpha 2
Diffstat (limited to 'qelly')
-rw-r--r-- | qelly/qelly.spec | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/qelly/qelly.spec b/qelly/qelly.spec new file mode 100644 index 0000000..9065ffe --- /dev/null +++ b/qelly/qelly.spec @@ -0,0 +1,44 @@ +Name: qelly +Version: 1.0 +Release: 0.1.alpha2%{?dist} +Summary: Qelly is a Qt port of Nally + +%global real_name Qelly +%global real_version 1.0a2 + +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 +* Thu Oct 17 2013 Ting-Wei Lan <lantw44@gmail.com> +- Initial packaging |