Makefile 787 B

1234567891011121314151617181920212223242526272829303132
  1. PORTNAME= weechat-otr
  2. DISTVERSIONPREFIX= v
  3. DISTVERSION= 1.9.2
  4. PORTREVISION= 1
  5. CATEGORIES= irc security python
  6. PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
  7. MAINTAINER= ports@FreeBSD.org
  8. COMMENT= WeeChat script for Off-the-Record (OTR) messaging
  9. WWW= https://github.com/mmb/weechat-otr
  10. LICENSE= GPLv3
  11. BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}potr>=1.0.1:security/py-potr@${PY_FLAVOR}
  12. RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}potr>=1.0.1:security/py-potr@${PY_FLAVOR} \
  13. weechat:irc/weechat
  14. USES= python
  15. USE_GITHUB= yes
  16. GH_ACCOUNT= mmb
  17. NO_BUILD= yes
  18. PLIST_FILES= ${PYTHON_SITELIBDIR}/weechat/weechat_otr.py
  19. do-install:
  20. ${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/weechat
  21. ${INSTALL_DATA} ${WRKSRC}/weechat_otr.py \
  22. ${STAGEDIR}${PYTHON_SITELIBDIR}/weechat/weechat_otr.py
  23. .include <bsd.port.mk>