mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
22 lines
730 B
Makefile
22 lines
730 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="tinyxml2"
|
|
PKG_VERSION="1.0.12"
|
|
PKG_SHA256="53a4dd1b3aed4aa05b18782e303646669d2d3b2de3c1919fe21aea319b44de7f"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="zlib"
|
|
PKG_SITE="http://www.grinninglizard.com/tinyxml2/index.html"
|
|
PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_SECTION="textproc"
|
|
PKG_SHORTDESC="tinyxml2: XML parser library"
|
|
PKG_LONGDESC="TinyXML2 is a simple, small, C++ XML parser that can be easily integrating into other programs."
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
PKG_CMAKE_OPTS_TARGET="-DBUILD_SHARED_LIBS=off -DBUILD_STATIC_LIBS=on"
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf $INSTALL/usr
|
|
}
|