Makefile 969 B

123456789101112131415161718192021222324252627282930313233
  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 graphic support
  10. PKG_SECTION:= browser
  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_ARGS+= --enable-graphics \
  17. --with-ssl \
  18. --without-svgalib \
  19. --without-x \
  20. --without-directfb \
  21. --without-pmshell \
  22. --without-atheos
  23. post-install:
  24. ${INSTALL_DIR} ${IDIR_LINKS}/usr/bin
  25. ${CP} ${WRKINST}/usr/bin/* ${IDIR_LINKS}/usr/bin
  26. include ${TOPDIR}/mk/pkg-bottom.mk