Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. PKG_NAME= glib2
  7. PKG_VERSION= 2.18.1
  8. PKG_RELEASE= 1
  9. PKG_MD5SUM= d53836f7fdd9970d03e255e9d712bd83
  10. DISTFILES= glib-${PKG_VERSION}.tar.gz
  11. WRKDIST= ${WRKDIR}/glib-${PKG_VERSION}
  12. MASTER_SITES= ftp://ftp.gtk.org/pub/glib/2.18/
  13. include ${TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,GLIB2,glib2,${PKG_VERSION}-${PKG_RELEASE}))
  15. TCPPFLAGS+= -I'${STAGING_DIR}/usr/include'
  16. CONFIGURE_STYLE= gnu
  17. CONFIGURE_ARGS+= --enable-debug=no \
  18. --disable-mem-pools \
  19. --disable-rebuilds \
  20. --with-libiconv=gnu \
  21. --with-threads=posix
  22. CONFIGURE_ENV+= glib_cv_long_long_format=ll \
  23. glib_cv_stack_grows=no \
  24. glib_cv_have_strlcpy=no \
  25. glib_cv_uscore=no \
  26. ac_cv_func_posix_getpwuid_r=yes \
  27. ac_cv_func_posix_getgrgid_r=yes
  28. BUILD_STYLE= auto
  29. INSTALL_STYLE= auto confprog
  30. post-install:
  31. ${INSTALL_DIR} ${IDIR_GLIB2}/usr/lib
  32. ${CP} ${WRKINST}/usr/lib/lib*.so.* ${IDIR_GLIB2}/usr/lib
  33. include ${TOPDIR}/mk/pkg-bottom.mk