~ubuntu-branches/ubuntu/trusty/cajun/trusty

« back to all changes in this revision

Viewing changes to cajun-jsonapi.spec

  • Committer: Package Import Robot
  • Author(s): Daniel Pocock
  • Date: 2013-09-26 14:03:24 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130926140324-m8cerngq0ct7rfoj
Tags: 2.0.3-1
* New upstream release
* Upstream now includes UTF-8 fix, local patch removed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# cajun only ships headers, so no debuginfo package is needed
 
2
%define debug_package %{nil}
 
3
 
 
4
Summary: A cross-platform C++ header library for JSON
 
5
Name: cajun-jsonapi
 
6
Version: 2.0.3
 
7
Release: 1%{?dist}
 
8
URL: https://github.com/cajun-jsonapi/cajun-jsonapi
 
9
Source0: https://github.com/cajun-jsonapi/cajun-jsonapi/archive/cajun-jsonapi-%{version}.tar.gz
 
10
License: BSD
 
11
Group: System Environment/Libraries
 
12
 
 
13
%description
 
14
CAJUN is a C++ API for the JSON data interchange format with an emphasis
 
15
on an intuitive, concise interface. The library provides JSON types
 
16
and operations that mimic standard C++ as closely as possible in concept
 
17
and design.
 
18
 
 
19
%package devel
 
20
Group: Development/Libraries
 
21
Summary: Header files for cajun
 
22
 
 
23
%description devel
 
24
Header files you can use to develop applications with cajun.
 
25
 
 
26
CAJUN is a C++ API for the JSON data interchange format with an emphasis
 
27
on an intuitive, concise interface. The library provides JSON types
 
28
and operations that mimic standard C++ as closely as possible in concept
 
29
and design.
 
30
 
 
31
%prep
 
32
%setup -q
 
33
 
 
34
%build
 
35
 
 
36
%install
 
37
install -d -m755 $RPM_BUILD_ROOT/%{_includedir}/cajun/json
 
38
install -p -m644 json/* $RPM_BUILD_ROOT/%{_includedir}/cajun/json
 
39
 
 
40
%check
 
41
make %{?_smp_mflags}
 
42
 
 
43
%files devel
 
44
%defattr(-,root,root,-)
 
45
%doc Readme.txt ReleaseNotes.txt
 
46
%dir %{_includedir}/cajun
 
47
%dir %{_includedir}/cajun/json
 
48
%{_includedir}/cajun/json/*
 
49
 
 
50
%changelog
 
51
* Thu Sep 26 2013 Daniel Pocock <daniel@pocock.com.au> - 2.0.3-1
 
52
- Initial spec file