diff options
author | Satoshi Taoka <taoka@FreeBSD.org> | 1999-10-16 07:20:06 +0000 |
---|---|---|
committer | Satoshi Taoka <taoka@FreeBSD.org> | 1999-10-16 07:20:06 +0000 |
commit | a5697be5acf79630700846c7005daa887be20751 (patch) | |
tree | 3b340ea7de98a8b76ba4569af9e740140ff21908 /audio/mpg123.el/Makefile | |
parent | Add archie.el (diff) |
a front-end to mpg123 audio player for Emacsen
Diffstat (limited to 'audio/mpg123.el/Makefile')
-rw-r--r-- | audio/mpg123.el/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/audio/mpg123.el/Makefile b/audio/mpg123.el/Makefile new file mode 100644 index 000000000000..8041e6d9d512 --- /dev/null +++ b/audio/mpg123.el/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: mpg123.el +# Version required: 1.5 +# Date created: 99/10/6 +# Whom: Satoshi Taoka <taoka@FreeBSD.org> +# +# $FreeBSD$ +# + +DISTNAME= mpg123.el +PKGNAME= mpg123.el-1.5 +CATEGORIES= audio elisp +MASTER_SITES= http://www.gentei.org/~yuuji/software/mpg123el/ +EXTRACT_SUFX= # empty + +MAINTAINER= taoka@FreeBSD.org + +RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 + +EXTRACT_ONLY= # empty +NO_WRKSUBDIR= yes +NO_BUILD= yes +WRKSRC= ${WRKDIR} + +ELISPDIR= ${PREFIX}/share/emacs/site-lisp +XELISPDIR= ${PREFIX}/lib/xemacs/site-lisp + +do-install: + ${MKDIR} ${ELISPDIR} + ${INSTALL_DATA} ${_DISTDIR}/${DISTNAME} ${ELISPDIR} +# For XEmacs + ${MKDIR} ${XELISPDIR} + ${LN} -sf ${ELISPDIR}/${DISTNAME} ${XELISPDIR} + +.include <bsd.port.mk> |