2010-11-29 17:17:10 +00:00
|
|
|
Name: premake
|
|
|
|
Version: 4.3
|
2014-06-07 17:08:58 +00:00
|
|
|
Release: 8%{?dist}
|
2010-11-29 17:17:10 +00:00
|
|
|
Summary: Cross-platform build configuration tool
|
|
|
|
|
|
|
|
Group: Development/Tools
|
|
|
|
License: BSD
|
|
|
|
URL: http://industriousone.com/premake
|
|
|
|
Source0: http://downloads.sourceforge.net/%{name}/premake-%{version}-src.zip
|
|
|
|
# This patch removes the bundeled Lua sources from the makefile to use the system Lua
|
|
|
|
Patch0: premake-4.3-system-lua.patch
|
|
|
|
# Add the missing manpage
|
|
|
|
Patch1: premake-4.3-manpage.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: lua-devel readline-devel
|
|
|
|
|
|
|
|
%description
|
|
|
|
Premake is a build configuration tool that can generate project files for:
|
|
|
|
- GNU make
|
|
|
|
- Code::Blocks
|
|
|
|
- CodeLite
|
|
|
|
- MonoDevelop
|
|
|
|
- SharpDevelop
|
|
|
|
- Apple XCode
|
|
|
|
- Microsoft Visual Studio
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch0 -p0
|
|
|
|
%patch1 -p0
|
|
|
|
# Inject optflags into CFLAGS
|
|
|
|
sed -i "s/^\s*CFLAGS\s*+=.*/CFLAGS += \$(CPPFLAGS) %{optflags}/" build/gmake.unix/Premake4.make
|
|
|
|
# Disable stripping the executable
|
|
|
|
sed -i "s/^\s*LDFLAGS\s*+= -s/LDFLAGS +=/" build/gmake.unix/Premake4.make
|
|
|
|
# Use the release build for running tests
|
|
|
|
sed -i "s/debug/release/" tests/test
|
|
|
|
|
|
|
|
%build
|
|
|
|
cd build/gmake.unix/
|
|
|
|
make verbose=true %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
install -m 755 -Dp ./bin/release/premake4 %{buildroot}/%{_bindir}/premake4
|
|
|
|
install -m 644 -Dp ./premake4.1 %{buildroot}/%{_mandir}/man1/premake4.1
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/premake4
|
|
|
|
%{_mandir}/man1/premake4.1*
|
|
|
|
%doc LICENSE.txt README.txt CHANGES.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2014-06-07 17:08:58 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-04 05:09:16 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 18:20:17 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-21 03:03:22 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-14 01:12:58 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-09 16:29:36 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-11-29 17:17:10 +00:00
|
|
|
* Sun Nov 28 2010 Joachim de Groot <jdegroot@web.de> - 4.3-2
|
|
|
|
- Let rpm handle the man page compression
|
|
|
|
|
|
|
|
* Sat Nov 27 2010 Joachim de Groot <jdegroot@web.de> - 4.3-1
|
|
|
|
- Update to 4.3, thus changed license to BSD
|
|
|
|
- Added missing version numbers to changelog
|
|
|
|
- Added readline-devel to BuildRequires
|
|
|
|
- Added a man page
|
|
|
|
|
|
|
|
* Fri Oct 29 2010 Joachim de Groot <jdegroot@web.de> - 4.2.1-3
|
|
|
|
- Correct building of the debuginfo package
|
|
|
|
|
|
|
|
* Fri Oct 29 2010 Joachim de Groot <jdegroot@web.de> - 4.2.1-2
|
|
|
|
- Implemented changes proposed by Mohamed El Morabity
|
|
|
|
|
|
|
|
* Thu Oct 28 2010 Joachim de Groot <jdegroot@web.de> - 4.2.1-1
|
|
|
|
- Initial version of the package
|
|
|
|
|