forked from pool/lua-luasec
- Update to version 1.3.1 * Add support for tls-psk * See: https://github.com/brunoos/luasec/compare/v1.2.0...v1.3.1 OBS-URL: https://build.opensuse.org/request/show/1098109 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luasec?expand=0&rev=25
69 lines
2.0 KiB
RPMSpec
69 lines
2.0 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define flavor @BUILD_FLAVOR@%{nil}
|
|
%define mod_name luasec
|
|
%if "%{flavor}" == ""
|
|
Name: lua-%{mod_name}
|
|
ExclusiveArch: do_not_build
|
|
%else
|
|
Name: %{flavor}-%{mod_name}
|
|
%endif
|
|
Version: 1.3.1
|
|
Release: 0
|
|
Summary: A Lua binding for OpenSSL
|
|
License: MIT
|
|
URL: https://github.com/brunoos/luasec
|
|
Source: https://github.com/brunoos/%{mod_name}/archive/v%{version}/%{mod_name}-%{version}.tar.gz
|
|
BuildRequires: %{flavor}-devel
|
|
BuildRequires: %{flavor}-luasocket
|
|
BuildRequires: libopenssl-devel
|
|
BuildRequires: lua-macros
|
|
Requires: %{flavor}
|
|
Requires: %{flavor}-luasocket
|
|
%lua_provides
|
|
|
|
%description
|
|
It is a binding for OpenSSL library to provide TLS/SSL communication.
|
|
It takes an already established TCP connection and creates a secure
|
|
session between the peers.
|
|
|
|
%prep
|
|
%autosetup -n %{mod_name}-%{version}
|
|
|
|
%build
|
|
# regenerate OpenSSL options
|
|
cd src
|
|
lua options.lua -g /usr/include/openssl/ssl.h > options.c
|
|
cd ..
|
|
#
|
|
make %{?_make_output_sync} %{?_smp_mflags} linux \
|
|
CFLAGS="%{optflags} -fPIC -I%{lua_incdir} -I. -DWITH_LUASOCKET -DLUASOCKET_DEBUG -DLUA_COMPAT_APIINTCASTS"
|
|
|
|
%install
|
|
%make_install LUAPATH=%{lua_noarchdir} LUACPATH=%{lua_archdir}
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc CHANGELOG README.md
|
|
%{lua_archdir}/ssl.so
|
|
%{lua_noarchdir}/ssl.lua
|
|
%{lua_noarchdir}/ssl/
|
|
|
|
%changelog
|