libantlr3c: add version 3.2

Signed-off-by: Espen Jürgensen <espenjurgensen+openwrt@gmail.com>
This commit is contained in:
ejurgensen 2014-10-16 23:24:10 +02:00
parent 4715296a79
commit d15d70f693
1 changed files with 55 additions and 0 deletions

55
libs/libantlr3c/Makefile Normal file
View File

@ -0,0 +1,55 @@
#
# Copyright (C) 2006-2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libantlr3c
PKG_VERSION:=3.2
PKG_RELEASE:=1
PKG_MD5SUM:=674646e1d1bf5c6015435480cead725a
PKG_SOURCE_URL:=http://www.antlr3.org/download/C
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_INSTALL:=1
PKG_MAINTAINER:=Espen Jürgensen <espenjurgensen+openwrt@gmail.com>
PKG_LICENSE:=BSD-2-Clause
PKG_LICENSE_FILES:=COPYING
include $(INCLUDE_DIR)/package.mk
define Package/libantlr3c
SECTION:=libs
CATEGORY:=Libraries
TITLE:=libantlr3c
URL:=http://www.antlr3.org/
endef
define Package/libantlr3c/description
ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers,
interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.
endef
TARGET_CFLAGS += $(FPIC)
CONFIGURE_ARGS += \
--enable-shared \
--enable-static
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libantlr3c.{a,so} $(1)/usr/lib/
endef
define Package/libantlr3c/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libantlr3c.so $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libantlr3c))