From 5901e0c406d811b42065047a27bb7619706b4ca3 Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Fri, 10 Mar 2017 05:46:13 +0000 Subject: [PATCH] spdlog: add package --- packages/devel/spdlog/package.mk | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 packages/devel/spdlog/package.mk diff --git a/packages/devel/spdlog/package.mk b/packages/devel/spdlog/package.mk new file mode 100644 index 0000000000..9754325acf --- /dev/null +++ b/packages/devel/spdlog/package.mk @@ -0,0 +1,33 @@ +################################################################################ +# This file is part of LibreELEC - http://www.libreelec.tv +# Copyright (C) 2017 Team LibreELEC +# +# LibreELEC is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# LibreELEC is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with LibreELEC. If not, see . +################################################################################ + +PKG_NAME="spdlog" +PKG_VERSION="0.11.0" +PKG_ARCH="any" +PKG_LICENSE="MIT" +PKG_SITE="https://github.com/gabime/spdlog" +PKG_URL="https://github.com/gabime/spdlog/archive/v$PKG_VERSION.tar.gz" +PKG_DEPENDS_TARGET="toolchain" +PKG_SECTION="devel" +PKG_SHORTDESC="spdlog: Very fast, header only, C++ logging library." +PKG_LONGDESC="Very fast, header only, C++ logging library." + +PKG_IS_ADDON="no" +PKG_AUTORECONF="no" + +PKG_CMAKE_OPTS_TARGET="-DSPDLOG_BUILD_EXAMPLES=OFF -DSPDLOG_BUILD_TESTS=OFF"