Makefile 1007 B

12345678910111213141516171819202122232425262728293031323334353637
  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:= links
  7. PKG_VERSION:= 2.2
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= c9937f9ed0061f264973182f871fb667
  10. PKG_DESCR:= web browser with console graphic support
  11. PKG_SECTION:= net
  12. PKG_DEPENDS:= libpng libjpeg libtiff gpm libopenssl
  13. PKG_URL:= http://links.twibright.com
  14. PKG_SITES:= http://links.twibright.com/download/
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,LINKS,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_STYLE:= gnu
  18. CONFIGURE_ARGS+= --enable-graphics \
  19. --with-ssl \
  20. --without-svgalib \
  21. --without-x \
  22. --without-directfb \
  23. --without-pmshell \
  24. --without-atheos
  25. BUILD_STYLE:= auto
  26. INSTALL_STYLE:= auto
  27. post-install:
  28. ${INSTALL_DIR} ${IDIR_LINKS}/usr/bin
  29. ${CP} ${WRKINST}/usr/bin/* ${IDIR_LINKS}/usr/bin
  30. include ${TOPDIR}/mk/pkg-bottom.mk