Makefile 1.0 KB

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