source: projects/specs/trunk/q/qrencode/qrencode-vl.spec @ 8845

Revision 8845, 2.6 KB checked in by kudoh, 10 years ago (diff)

rebuilt and new upstream release

Line 
1Name:           qrencode
2Summary:        Generate QR 2D barcodes
3Version:        3.4.3
4Release:        2%{?_dist_release}
5
6Group:          Applications/Engineering
7License:        LGPLv2+
8URL:            http://megaui.net/fukuchi/works/qrencode/index.en.html
9
10Source0:        http://megaui.net/fukuchi/works/qrencode/%{name}-%{version}.tar.bz2
11
12BuildRoot:      %{_tmppath}/%{name}-%{version}-root
13BuildRequires:  libpng-devel
14BuildRequires:  SDL-devel
15BuildRequires:  chrpath
16
17
18%description
19Qrencode is a utility software using libqrencode to encode string data in
20a QR Code and save as a PNG image.
21
22%package        devel
23Summary:        QR Code encoding library - Development files
24Group:          Development/Libraries
25Requires:       %{name} = %{version}-%{release}
26
27%description    devel
28The qrencode-devel package contains libraries and header files for developing
29applications that use qrencode.
30
31%prep
32%setup -q
33
34
35%build
36%configure --with-tests
37make %{?_smp_mflags}
38
39
40%install
41rm -rf $RPM_BUILD_ROOT
42make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
43rm -rf $RPM_BUILD_ROOT%{_libdir}/libqrencode.la
44chrpath --delete $RPM_BUILD_ROOT%{_bindir}/qrencode
45
46%check
47cd ./tests
48sh test_all.sh
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53
54%post -p /sbin/ldconfig
55
56%postun -p /sbin/ldconfig
57
58
59%files
60%defattr(-,root,root,-)
61%doc ChangeLog COPYING NEWS README TODO
62%{_bindir}/qrencode
63%{_mandir}/man1/qrencode.1.*
64%{_libdir}/libqrencode.so.*
65
66%files devel
67%defattr(-,root,root,-)
68%{_includedir}/qrencode.h
69%{_libdir}/libqrencode.so
70%{_libdir}/pkgconfig/libqrencode.pc
71
72
73%changelog
74* Sun Jul 20 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 3.4.3-2
75- rebuilt with libpng-1.6.12
76
77* Sat Sep 07 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.4.3-1
78- new upstream release
79
80* Wed Jun 05 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.4.2-1
81- new upstream release
82
83* Sun Jul 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.3.1-1
84- new upstream release
85- add BuildRequires: SDL-devel
86
87* Sun Jul 31 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 3.1.1-6
88- Initial build for Vine Linux
89
90* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-5
91- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
92
93* Tue Jul 13 2010 Tareq Al Jurf <taljurf@fedoraproject.org> - 3.1.1-4
94- Fixed the rpath problem.
95
96* Mon Jul 12 2010 Tareq Al Jurf <taljurf@fedoraproject.org> - 3.1.1-3
97- Fixed some small spec mistakes.
98
99* Mon Jul 12 2010 Tareq Al Jurf <taljurf@fedoraproject.org> - 3.1.1-2
100- Fixed some small errors.
101
102* Thu Jul 08 2010 Tareq Al Jurf <taljurf@fedoraproject.org> - 3.1.1-1
103- Initial build.
Note: See TracBrowser for help on using the repository browser.