mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
29 lines
620 B
Makefile
29 lines
620 B
Makefile
# Created by: Dennis Herrmann <adox@mcx2.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= last
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://last-cmus.googlecode.com/files/ \
|
|
http://mirror.mcx2.org/
|
|
PKGNAMESUFFIX= -cmus
|
|
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}.py
|
|
EXTRACT_SUFX= # none
|
|
|
|
MAINTAINER= dhn@FreeBSD.org
|
|
COMMENT= Cmus plugin for submitting songs into last.fm
|
|
|
|
USE_PYTHON= yes
|
|
SUB_FILES= pkg-message
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/${DISTNAME}
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${_DISTDIR}/last-cmus.py ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|