Makefile 997 B

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