summaryrefslogtreecommitdiffstats
path: root/libsodium/libsodium.spec
blob: 41edc9717b1a5f3ab234d0418a42404cb9598bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Name:       libsodium
Version:	0.4.2
Release:	1%{?dist}
Summary:	P(ortable|ackageable) NaCl-based crypto library

Group:		System Environemnt/Libraries
License:	GPLv3
URL:	    https://github.com/jedisct1/%{name}
Source0:	https://github.com/jedisct1/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
BuildRoot:  %{_tmppath}/%{name}-%{version}-root

#BuildRequires:	
#Requires:	

%description
NaCl (pronounced "salt") is a new easy-to-use high-speed software library for network communication, encryption, decryption, signatures, etc.

NaCl's goal is to provide all of the core operations needed to build higher-level cryptographic tools.

%package devel
Summary: Files for development of application which will use libsodium
Group: Development/Libraries

%description devel
NaCl (pronounced "salt") is a new easy-to-use high-speed software library for
network communication, encryption, decryption, signatures, etc. The
libsodium-devel package contains various include files needed to develop
applications which rely on libsodium.

%prep
%setup -q -n %{name}-%{version}


%build
%configure
make %{?_smp_mflags}

%install
make install DESTDIR=%{buildroot}

%files
%defattr(-, root,root)
%doc

%files devel
%defattr(-,root,root)
%{_includedir}/sodium.h
%{_includedir}/sodium
%{_libdir}/*.so
%{_prefix}/%{_lib}/libsodium.a
%{_prefix}/%{_lib}/libsodium.so.*
%{_prefix}/%{_lib}/libsodium.la

# %files static
#%defattr(-,root,root)
#%attr(0644,root,root) %{_libdir}/*.a

%changelog