source: projects/specs/trunk/u/uget/uget-vl.spec @ 7049

Revision 7049, 3.7 KB checked in by kudoh, 12 years ago (diff)
Line 
1%define _version 1.10.2
2Name:           uget
3Version:        %{_version}
4Release:        1%{?_dist_release}
5Summary:        Uget is a download manager that using gtk and curl
6Summary(ja):    Uget - gtk と curl を用いたダウンロードマネージャー
7
8Group:          Applications/Internet
9License:        LGPLv2+
10URL:            http://urlget.sourceforge.net/
11Source0:        http://downloads.sourceforge.net/urlget/%{name}-%{_version}.tar.gz
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires: desktop-file-utils gettext
16BuildRequires: glib2-devel => 2.32 openldap-devel
17BuildRequires: curl-devel => 7.19.1
18BuildRequires: perl-XML-Parser
19BuildRequires: gstreamer-devel libnotify-devel
20BuildRequires: gtk3-devel >= 3.4
21
22
23%description
24Uget is a download manager that using gtk+ and curl.
25
26%description -l ja
27Uget は gtk と curl を用いたダウンロードマネージャーです。
28
29%prep
30%setup -q -n %{name}-%{version}
31
32%build
33%configure --disable-plugin-aria2 --enable-appindicator=no
34
35make -k %{?_smp_mflags}
36
37%install
38rm -rf $RPM_BUILD_ROOT
39make install \
40        DESTDIR=$RPM_BUILD_ROOT \
41        INSTALL="install -p"
42
43%find_lang %{name}
44
45desktop-file-install \
46        --dir $RPM_BUILD_ROOT%{_datadir}/applications/ \
47        %{name}-gtk.desktop
48
49%clean
50rm -rf $RPM_BUILD_ROOT
51
52%post
53touch --no-create %{_datadir}/icons/hicolor || :
54%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
55update-desktop-database > /dev/null 2>&1 || :
56
57
58%postun
59touch --no-create %{_datadir}/icons/hicolor || :
60%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
61update-desktop-database > /dev/null 2>&1 || :
62
63%files -f %{name}.lang
64%defattr(-,root,root,-)
65%doc COPYING ChangeLog README
66%{_bindir}/%{name}-gtk
67%{_datadir}/applications/%{name}-gtk.desktop
68%{_datadir}/icons/*
69%{_datadir}/sounds/*
70
71%changelog
72* Sun Oct 28 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.10.2-1
73- new upstream release
74
75* Sat Sep 29 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.10.1-1
76- new upstream release
77
78* Sat Sep 08 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.10-1
79- new upstream release
80- changed BuildRequires: gtk3-devel to >= 3.4, glib2-devel => 2.22 to 2.32
81- disabled conditional branch
82  - because needed gtk3-3.4+
83- delted %%configure option --with-gtk3
84
85* Tue May 29 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.8.2-1
86- new upstream release
87
88* Sat Apr 28 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.8.1-1
89- new upstream release
90- set conditional branch for VineSeed and other
91
92* Thu Jun 09 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.8.0-1
93- new upstream release
94- added %%configure option --disable-plugin-aria2 --enable-appindicator=no
95
96* Thu May 5 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.6.4-1
97- new upstream release
98
99* Sun Dec 19 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.6.2a-1
100- new upstream release
101
102* Sat Oct 30 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.6.1-1
103- new upstream release
104
105* Thu Sep 2 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.6.0-1
106- new upstream release
107- dropt Pacth1
108- changed BuildRequires: gtk2-devel => 2.18, glib2-devel => 2.22, curl-devel => 7.19.1
109
110* Sat Mar 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.0.3-1
111- new upstream release
112
113* Thu Mar 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.0.2-1
114- new upstream release
115- applied new naming policy to spec
116
117* Wed Jan 17 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.0.1-2
118- added Patch1 from Fedora to fix segv when invalid uri is passed to the argument
119
120* Wed Dec 23 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.0.1-1
121- new upstream release
122- added BuildRequires:  gstreamer-devel libnotify-devel
123
124* Thu Oct 8 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.5.0-1
125- initial build for VineSeed
126
127* Sat May  2 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.4.7-1
128- Initial packaging
Note: See TracBrowser for help on using the repository browser.