Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= libIDL
  5. PKG_VERSION:= 0.8.14
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 531fbc1b40b80dd1d6f3b5e76b99067c
  8. PKG_DESCR:= libraries for Interface Definition Language files
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= glib
  11. PKG_BUILDDEP:= glib-host glib m4-host flex-host bison-host libIDL-host
  12. PKG_URL:= http://www.gnome.org/
  13. PKG_SITES:= http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/
  14. PKG_LIBNAME:= libidl
  15. PKG_OPTS:= dev
  16. include $(TOPDIR)/mk/host.mk
  17. include $(TOPDIR)/mk/package.mk
  18. CONFIGURE_ENV+= libIDL_cv_long_long_format=ll
  19. $(eval $(call HOST_template,LIBIDL,libidl,$(PKG_VERSION)-${PKG_RELEASE}))
  20. $(eval $(call PKG_template,LIBIDL,libidl,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  21. HOST_STYLE:= auto
  22. libidl-install:
  23. $(INSTALL_DIR) $(IDIR_LIBIDL)/usr/lib
  24. $(CP) $(WRKINST)/usr/lib/libIDL*.so* \
  25. $(IDIR_LIBIDL)/usr/lib
  26. include ${TOPDIR}/mk/host-bottom.mk
  27. include ${TOPDIR}/mk/pkg-bottom.mk