diff --git a/cglm.podspec b/cglm.podspec new file mode 100644 index 0000000..d9faadb --- /dev/null +++ b/cglm.podspec @@ -0,0 +1,29 @@ +Pod::Spec.new do |s| + + # Description + s.name = "cglm" + s.version = "0.4.4" + s.summary = "📽 Optimized OpenGL/Graphics Math (glm) for C" + s.description = <<-DESC +cglm is math library for graphics programming for C. It is similar to original glm but it is written for C instead of C++ (you can use here too). See the documentation or README for all features. + DESC + + s.documentation_url = "http://cglm.readthedocs.io" + + # Home + s.homepage = "https://github.com/recp/cglm" + s.license = { :type => "MIT", :file => "LICENSE" } + s.author = { "Recep Aslantas" => "recp@acm.org" } + + # Sources + s.source = { :git => "https://github.com/recp/cglm.git", :tag => "v#{s.version}" } + s.source_files = "src", "include/cglm/**/*.h" + s.public_header_files = "include", "include/cglm/**/*.h" + s.private_header_files = "src/**/*.h" + s.exclude_files = "src/win/*", "src/dllmain.c" + s.preserve_path = "include" + s.header_mappings_dir = "include" + + # Linking + s.library = "m" +end diff --git a/configure.ac b/configure.ac index 42cdd05..120ac02 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ #***************************************************************************** AC_PREREQ([2.69]) -AC_INIT([cglm], [0.4.3], [info@recp.me]) +AC_INIT([cglm], [0.4.4], [info@recp.me]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/docs/source/conf.py b/docs/source/conf.py index b75537c..6ea46ac 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,9 +62,9 @@ author = u'Recep Aslantas' # built documents. # # The short X.Y version. -version = u'0.4.3' +version = u'0.4.4' # The full version, including alpha/beta/rc tags. -release = u'0.4.3' +release = u'0.4.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/include/cglm/version.h b/include/cglm/version.h index b9da46c..3ed79fb 100644 --- a/include/cglm/version.h +++ b/include/cglm/version.h @@ -10,6 +10,6 @@ #define CGLM_VERSION_MAJOR 0 #define CGLM_VERSION_MINOR 4 -#define CGLM_VERSION_PATCH 3 +#define CGLM_VERSION_PATCH 4 #endif /* cglm_version_h */