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

Revision 7712, 2.4 KB checked in by Takemikaduchi, 11 years ago (diff)

new upstream release

Line 
1Name:           qrencode
2Summary:        Generate QR 2D barcodes
3Version:        3.4.2
4Release:        1%{?_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* Wed Jun 05 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.4.2-1
75- new upstream release
76
77* Sun Jul 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.3.1-1
78- new upstream release
79- add BuildRequires: SDL-devel
80
81* Sun Jul 31 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 3.1.1-6
82- Initial build for Vine Linux
83
84* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-5
85- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
86
87* Tue Jul 13 2010 Tareq Al Jurf <taljurf@fedoraproject.org> - 3.1.1-4
88- Fixed the rpath problem.
89
90* Mon Jul 12 2010 Tareq Al Jurf <taljurf@fedoraproject.org> - 3.1.1-3
91- Fixed some small spec mistakes.
92
93* Mon Jul 12 2010 Tareq Al Jurf <taljurf@fedoraproject.org> - 3.1.1-2
94- Fixed some small errors.
95
96* Thu Jul 08 2010 Tareq Al Jurf <taljurf@fedoraproject.org> - 3.1.1-1
97- Initial build.
Note: See TracBrowser for help on using the repository browser.