Makefile 821 B

12345678910111213141516171819202122232425262728
  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:= xvinfo
  5. PKG_VERSION:= 1.1.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 49f5a19ddff9393aaea4ecaacaedddb3
  8. PKG_DESCR:= Print out X-Video extension adaptor information
  9. PKG_SECTION:= x11/apps
  10. PKG_DEPENDS:= xorg-server
  11. PKG_BUILDDEP:= xorg-server
  12. PKG_URL:= http://xorg.freedesktop.org/
  13. PKG_SITES:= ${MASTER_SITE_XORG}
  14. PKG_ARCH_DEPENDS:= !cris
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,XVINFO,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. post-install:
  18. $(INSTALL_DIR) $(IDIR_XVINFO)/usr/bin
  19. $(INSTALL_BIN) $(WRKINST)/usr/bin/xvinfo \
  20. $(IDIR_XVINFO)/usr/bin
  21. include ${TOPDIR}/mk/pkg-bottom.mk