Makefile 773 B

1234567891011121314151617181920212223242526272829303132333435
  1. # $OpenBSD: Makefile,v 1.6 2015/10/09 22:16:51 tim Exp $
  2. COMMENT = unicode sans-serif/monospace TrueType fonts from Ubuntu
  3. DISTNAME = ubuntu-font-family-0.83
  4. PKGNAME = ${DISTNAME:S,-family,s,}
  5. CATEGORIES = fonts
  6. HOMEPAGE = http://font.ubuntu.com/
  7. MAINTAINER = Tim van der Molen <tim@openbsd.org>
  8. # Ubuntu Font Licence 1.0
  9. # http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt
  10. PERMIT_PACKAGE_CDROM = Yes
  11. MASTER_SITES = ${HOMEPAGE}download/
  12. EXTRACT_SUFX = .zip
  13. NO_BUILD = Yes
  14. NO_TEST = Yes
  15. PKG_ARCH = *
  16. FONTDIR = ${PREFIX}/share/fonts/ubuntu
  17. DOCDIR = ${PREFIX}/share/doc/ubuntu-fonts
  18. do-install:
  19. ${INSTALL_DATA_DIR} ${FONTDIR} ${DOCDIR}
  20. ${INSTALL_DATA} ${WRKSRC}/*ttf ${FONTDIR}
  21. ${INSTALL_DATA} ${WRKSRC}/*txt ${DOCDIR}
  22. .include <bsd.port.mk>