8f5201384d
Fixes compilation of libproxy against duktape. https://github.com/svaarala/duktape/issues/2464
54 lines
1.2 KiB
RPMSpec
54 lines
1.2 KiB
RPMSpec
Name: duktape
|
|
Version: 2.7.0
|
|
Release: %autorelease
|
|
Summary: Embeddable Javascript engine
|
|
|
|
License: MIT
|
|
Url: http://duktape.org/
|
|
Source0: http://duktape.org/%{name}-%{version}.tar.xz
|
|
Patch0: duktape-2.7.0-link-against-libm.patch
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: make
|
|
|
|
%description
|
|
Duktape is an embeddable Javascript engine, with a focus on portability and
|
|
compact footprint.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name} = %{version}
|
|
|
|
%description devel
|
|
Embeddable Javascript engine.
|
|
|
|
This package contains header files and libraries needed to develop
|
|
application that use %{name}.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%make_build -f Makefile.sharedlibrary INSTALL_PREFIX=%{_prefix} LIBDIR=/%{_lib}
|
|
|
|
%install
|
|
%make_install -f Makefile.sharedlibrary INSTALL_PREFIX=%{_prefix} LIBDIR=/%{_lib}
|
|
|
|
%files
|
|
%license LICENSE.txt
|
|
%doc AUTHORS.rst
|
|
%{_libdir}/libduktape.so.*
|
|
%{_libdir}/libduktaped.so.*
|
|
|
|
%files devel
|
|
%doc examples/ README.rst
|
|
%{_includedir}/duk_config.h
|
|
%{_includedir}/duktape.h
|
|
%{_libdir}/libduktape.so
|
|
%{_libdir}/libduktaped.so
|
|
%{_libdir}/pkgconfig/duktape.pc
|
|
|
|
%changelog
|
|
%autochangelog
|