1
0
mirror of https://github.com/freifunk-gluon/packages.git synced 2024-06-15 19:54:07 +02:00
gluon-packages/libs/lua-math-polygon/Makefile
Jan-Tarek Butt 67177de99a
libs/lua-math-polygon: add add math lib for gauss jordan Ponit in Polygon algorithm
Signed-off-by: Jan-Tarek Butt <tarek@ring0.de>
2019-04-22 18:14:16 +02:00

23 lines
470 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=lua-math-polygon
PKG_VERSION:=1
include $(INCLUDE_DIR)/package.mk
define Package/lua-math-polygon
SECTION:=libs
CATEGORY:=Libraries
TITLE:=Polygon math library can also convert 2 point rectangles into polygons
endef
define Build/Compile
endef
define Package/lua-math-polygon/install
$(INSTALL_DIR) $(1)/usr/lib/lua
$(INSTALL_DATA) src/math-polygon.lua $(1)/usr/lib/lua/
endef
$(eval $(call BuildPackage,lua-math-polygon))