summaryrefslogtreecommitdiff
path: root/package/tinyxml/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-08-12 10:30:50 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-08-12 10:30:50 +0200
commit8f16335443a322578274737c8d80ce557e4d2656 (patch)
tree947d42d781b409f72c9f0fa957d8796352f9b386 /package/tinyxml/Makefile
parent5212b6029108093bb3ac6d8386fd999fd00f2701 (diff)
add xmbc package for raspberry-pi target
Diffstat (limited to 'package/tinyxml/Makefile')
-rw-r--r--package/tinyxml/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/package/tinyxml/Makefile b/package/tinyxml/Makefile
new file mode 100644
index 000000000..3875bf225
--- /dev/null
+++ b/package/tinyxml/Makefile
@@ -0,0 +1,32 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= tinyxml
+PKG_VERSION:= 2.6.2
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 2a0aaf609c9e670ec9748cd01ed52dae
+PKG_DESCR:= a simple, small, minimal, C++ XML parser
+PKG_SECTION:= libs
+PKG_URL:= http://sourceforge.net/projects/tinyxml/
+PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=tinyxml/}
+
+DISTFILES:= ${PKG_NAME}_2_6_2.zip
+WRKDIST= ${WRKDIR}/tinyxml
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,TINYXML,tinyxml,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+INSTALL_STYLE:= manual
+
+tinyxml-install:
+ $(INSTALL_DIR) $(IDIR_TINYXML)/usr/lib
+ $(CP) $(WRKBUILD)/libtinyxml*.so* \
+ $(IDIR_TINYXML)/usr/lib
+ $(INSTALL_DATA) $(WRKBUILD)/tiny{str,xml}.h \
+ $(STAGING_DIR)/usr/include
+
+include ${TOPDIR}/mk/pkg-bottom.mk