| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- %define luaver 5.1
- %define lualibdir %{_libdir}/lua/%{luaver}
- Name: lua-cjson
- Version: 1.0.4
- Release: 1%{?dist}
- Summary: JSON support for the Lua language
- Group: Development/Libraries
- License: MIT
- URL: http://www.kyne.com.au/~mark/software/lua-cjson/
- Source0: http://www.kyne.com.au/~mark/software/lua-cjson/lua-cjson-%{version}.tar.gz
- BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
- BuildRequires: lua >= %{luaver}, lua-devel >= %{luaver}
- Requires: lua >= %{luaver}
- %description
- Lua CJSON provides fast, standards compliant JSON support for Lua.
- %prep
- %setup -q
- %build
- make %{?_smp_mflags} CFLAGS="%{optflags}" LUA_INCLUDE_DIR="%{_includedir}"
- %install
- rm -rf "$RPM_BUILD_ROOT"
- make install DESTDIR="$RPM_BUILD_ROOT" LUA_LIB_DIR="%{lualibdir}"
- %clean
- rm -rf "$RPM_BUILD_ROOT"
- %files
- %defattr(-,root,root,-)
- %doc LICENSE NEWS performance.txt README rfc4627.txt tests THANKS TODO
- %{lualibdir}/*
- %changelog
- * Wed Nov 27 2011 Mark Pulford <[email protected]> - 1.0.4-1
- - Updated for 1.0.4
- * Wed Sep 15 2011 Mark Pulford <[email protected]> - 1.0.3-1
- - Updated for 1.0.3
- * Sun May 29 2011 Mark Pulford <[email protected]> - 1.0.2-1
- - Updated for 1.0.2
- * Sun May 10 2011 Mark Pulford <[email protected]> - 1.0.1-1
- - Updated for 1.0.1
- * Sun May 1 2011 Mark Pulford <[email protected]> - 1.0-1
- - Initial package
|