%global solib tolua++-5.1 Name: compat-tolua++ Version: 1.0.93 Release: 9%{?dist} Summary: lua-5.1 compatible version of tolua++ (C++ Lua integration) Group: Development/Tools License: MIT # Upstream us defunct, so no URL Source0: tolua++-%{version}.tar.bz2 Patch0: tolua++-1.0.93-lua51.patch Patch1: tolua++-1.0.93-lua-include-path.patch BuildRequires: gcc BuildRequires: scons BuildRequires: compat-lua-devel >= 5.1 %description This is a lua-5.1 compatible version of tolua++. tolua++ is an extended version of tolua, a tool to integrate C/C++ code with Lua. tolua++ includes new features oriented to C++. %package devel Summary: Development files for compat-tolua++ Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} Requires: compat-lua-devel >= 5.1 # tolua++-devel and compat-tolua++ cannot be installed at the same time Conflicts: tolua++-devel %description devel Development files for compat-tolua++. %prep %setup -q -n tolua++-%{version} %patch0 -p1 -b .lua51 %patch1 -p1 sed -i 's/\r//' doc/tolua++.html %build scons %{?_smp_mflags} -Q CCFLAGS="%{optflags} $(pkg-config --cflags lua-5.1)" tolua_lib=%{solib} LINKFLAGS="-Wl,-soname,lib%{solib}.so" shared=1 # Relink the tolua++ binary, there are 2 reasons for this: # -Link it without the soname which we add to LINKFLAGS to build a shared lib # -On non x86_64 link it against the pre-generated toluabind rather then the # bootstapped one as something goes wrong with the bootstrap on ARM, x86_32 # (rhbz#1094103) and ppc (rhbz#704372) causing a segfault for unknown reasons. %ifarch x86_64 gcc -o bin/tolua++ src/bin/tolua.o src/bin/toluabind.o -Llib -l%{solib} -llua-5.1 -ldl -lm %else gcc -o bin/tolua++ src/bin/tolua.o src/bin/toluabind_default.o -Llib -l%{solib} -llua-5.1 -ldl -lm %endif %install mkdir -p $RPM_BUILD_ROOT%{_bindir} mkdir -p $RPM_BUILD_ROOT%{_libdir} mkdir -p $RPM_BUILD_ROOT%{_includedir} install -m 755 bin/tolua++ $RPM_BUILD_ROOT%{_bindir} install -m 755 lib/lib%{solib}.so $RPM_BUILD_ROOT%{_libdir} ln -s lib%{solib}.so $RPM_BUILD_ROOT%{_libdir}/libtolua++.so install -p -m 644 include/tolua++.h $RPM_BUILD_ROOT%{_includedir} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %doc README doc/* %{_libdir}/lib%{solib}.so %files devel %{_bindir}/tolua++ %{_libdir}/libtolua++.so %{_includedir}/tolua++.h %changelog * Thu Jul 12 2018 Fedora Release Engineering - 1.0.93-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Wed Feb 07 2018 Fedora Release Engineering - 1.0.93-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Wed Aug 02 2017 Fedora Release Engineering - 1.0.93-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 1.0.93-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Feb 10 2017 Fedora Release Engineering - 1.0.93-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Wed Feb 03 2016 Fedora Release Engineering - 1.0.93-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Wed Jun 17 2015 Fedora Release Engineering - 1.0.93-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Mon Feb 23 2015 Hans de Goede - 1.0.93-2 - Upstream is defunct, remove URLs pointing to it - Minor specifile cleanups (rhbz#1195255) * Mon Feb 23 2015 Hans de Goede - 1.0.93-1 - First version of compat-tolua++, based on the f21 tolua++ package