mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
77f8276a88
- Use the version tag instead of commit hash when they're the same. - Remove unnneeded variables. - Simplify go- ports when possible. - Various fixes. Sponsored by: Absolight
28 lines
477 B
Makefile
28 lines
477 B
Makefile
# Created by: Chih-Hsin Chang <chihhsin@cs.nctu.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gydict
|
|
PORTVERSION= 1.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= chinese textproc python
|
|
|
|
MAINTAINER= chihhsin@cs.nctu.edu.tw
|
|
COMMENT= Command line tool of Yahoo! Dictionary
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= python:run,3
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= iamgyz
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
PLIST_FILES= bin/gydict
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/gydict.py ${STAGEDIR}${PREFIX}/bin/gydict
|
|
|
|
.include <bsd.port.mk>
|