diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-05-12 12:36:21 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-05-12 12:36:21 +0200 |
commit | 8732b26738a41671d8d2223e4d629c20c7e622cc (patch) | |
tree | 06c8c984653e39d2039f5fc262cf97ec9140ed65 /package/libantlr3c/Makefile | |
parent | 6964a9c72877e278846d19174819b720b2815ae1 (diff) |
add forked-daapd server and all deps
Diffstat (limited to 'package/libantlr3c/Makefile')
-rwxr-xr-x | package/libantlr3c/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/libantlr3c/Makefile b/package/libantlr3c/Makefile new file mode 100755 index 000000000..cb5d58571 --- /dev/null +++ b/package/libantlr3c/Makefile @@ -0,0 +1,24 @@ +# 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:= libantlr3c +PKG_VERSION:= 3.2 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 674646e1d1bf5c6015435480cead725a +PKG_DESCR:= ANother Tool for Language Recognition +PKG_SECTION:= libs +PKG_SITES:= http://www.antlr.org/download/C/ + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,LIBANTLR3C,libantlr3c,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIGURE_ENV+= OPTIMFLAGS="$(TARGET_CFLAGS)" + +libantlr3c-install: + ${INSTALL_DIR} ${IDIR_LIBANTLR3C}/usr/lib + ${CP} ${WRKINST}/usr/lib/libantlr3c.so* ${IDIR_LIBANTLR3C}/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |