source: projects/specs/trunk/l/lcrt/lcrt-vl.spec @ 8368

Revision 8368, 1.9 KB checked in by kudoh, 10 years ago (diff)

rebuilt an new upstream release

Line 
1Name: lcrt
2Version: 1.1.2
3Release: 2%{?_dist_release}
4Summary: Graphic Linux remote login tool
5Summary(ja): グラフィック Linux リモートログインツール
6
7Group: Applications/Internet
8License: GPLv2
9URL: https://github.com/niutao/lcrt
10#URL: http://code.google.com/p/lcrt/
11Source0: %{name}-%{version}.tar.gz
12Source1: ja_JP.c
13Source2: ja_JP.h
14
15Patch0: enable_ja_trans.patch
16Patch1: fix_desktop_entry.patch
17BuildRoot: %{_tmppath}/%{name}-%{version}-root
18
19BuildRequires: desktop-file-utils
20BuildRequires: gtk2-devel >= 2.0
21BuildRequires: sqlite3-devel >= 3.0.0
22BuildRequires: vte-devel >= 0.22.2
23
24Requires: openssh
25Requires: openssh-clients
26
27%description
28lcrt is a Linux remote login tool. Just like ssh or telnet, but it has
29a GUI and can manage many connections. User can use it to save connection
30information such as hostname, username and password(optionally), and
31auto login at next time. lcrt also can clone a connected session, so
32user can open many connections quickly.
33
34%prep
35%setup -q
36%patch0 -p1
37%patch1 -p1
38%{__cp} -f %{SOURCE1} %{SOURCE2} language/
39
40%build
41%configure
42%{__make} %{?_smp_mflags}
43
44%install
45%{__rm} -rf $RPM_BUILD_ROOT
46%{__make} install DESTDIR=$RPM_BUILD_ROOT
47
48desktop-file-install --vendor="" \
49        --delete-original \
50        --dir=%{buildroot}/%{_datadir}/applications \
51        %{buildroot}/%{_datadir}/applications/%{name}.desktop
52
53%post
54update-desktop-database > /dev/null 2>&1 || :
55
56%postun
57update-desktop-database > /dev/null 2>&1 || :
58
59%files
60%defattr(-,root,root,-)
61%doc AUTHORS COPYING ChangeLog NEWS README
62%{_bindir}/%{name}
63%{_datadir}/applications/%{name}.desktop
64%{_datadir}/gnome/*
65%{_datadir}/%{name}/*
66%{_datadir}/pixmaps/*
67%{_mandir}/man1/%{name}.1.gz
68
69%changelog
70* Sat Apr 19 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.1.2-2
71- rebuilt with new toolchain
72
73* Sun Jun 17 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.1.2-1
74- initial build for VineSeed
Note: See TracBrowser for help on using the repository browser.