source: projects/specs/trunk/m/msgpack/msgpack-vl.spec @ 8090

Revision 8090, 1.8 KB checked in by iwaim, 10 years ago (diff)

msgpack 0.5.8-1

Line 
1%define ver 0.5.8
2%define rel 1
3
4Name:           msgpack
5Version:        %{ver}
6Release:        %{rel}%{?_dist_release}
7Summary:        Binary-based efficient object serialization library
8Group:          System Environment/Libraries
9
10License:        ASL 2.0
11URL:            http://msgpack.org
12Source0:        http://msgpack.org/releases/cpp/%{name}-%{version}.tar.gz
13
14BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
15# for regenerating configure
16BuildRequires:  libtool
17# for %%check
18BuildRequires:  gtest-devel
19BuildRequires:  zlib-devel
20
21Vendor: Project Vine
22Distribution: Vine Linux
23Packager: iwaim
24
25%description
26MessagePack is a binary-based efficient object serialization
27library. It enables to exchange structured objects between many
28languages like JSON. But unlike JSON, it is very fast and small.
29
30
31%package devel
32Summary:        Libraries and header files for %{name}
33Group:          Development/Libraries
34Requires:       %{name} = %{version}-%{release}
35
36%description devel
37Libraries and header files for %{name}
38
39
40%prep
41%setup -q
42
43
44%build
45%configure --disable-static
46make %{?_smp_mflags}
47
48
49%check
50make check
51
52
53%install
54make install DESTDIR=$RPM_BUILD_ROOT
55find $RPM_BUILD_ROOT -name '*.la' -exec rm -f '{}' ';'
56
57
58%post -p /sbin/ldconfig
59
60%postun -p /sbin/ldconfig
61
62
63%files
64%doc AUTHORS COPYING ChangeLog LICENSE NOTICE README README.md
65%{_libdir}/*.so.*
66
67%files devel
68%{_includedir}/*
69%{_libdir}/*.so
70%{_libdir}/pkgconfig/msgpack.pc
71
72
73%changelog
74* Tue Dec 31 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 0.5.8-1
75- update to 0.5.8
76- drop gtest patch: upstream fixed
77- add pkgconfig file in msgpack-devel package
78
79* Fri Feb  1 2013 IWAI, Masaharu <iwai@alib.jp> 0.5.7-1
80- initial build for Vine Linux
81
82* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.7-2
83- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
84
85* Wed Feb 15 2012 Daiki Ueno <dueno@redhat.com> - 0.5.7-1
86- initial packaging for Fedora
87
Note: See TracBrowser for help on using the repository browser.