mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
48a0678b47
Post.FM is a Perl script that submits information about your currently played track to Last.FM / Audioscrobbler. It's primarily made for CMUS, a ncurses based music player, but could be used as a general purpose scrobbler with only minor modifications. Author: Jonas Kramer <lizer@gmx.net> WWW: http://nex.scrapping.cc/post-fm/
37 lines
858 B
Makefile
37 lines
858 B
Makefile
# New ports collection makefile for: cmus-post.fm
|
|
# Date created: 8 March 2007
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= post.fm
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= CENKES
|
|
PKGNAMEPREFIX= cmus-
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= Last.fm submitter
|
|
|
|
RUN_DEPENDS= p5-libwww>=5.805:${PORTSDIR}/www/p5-libwww
|
|
|
|
USE_BZIP2= yes
|
|
USE_PERL5_RUN= yes
|
|
SUB_FILES= pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
NO_BUILD= yes
|
|
PLIST_FILES= libexec/${PORTNAME} %%EXAMPLESDIR%%/${PORTNAME}.conf
|
|
PLIST_DIRS= %%EXAMPLESDIR%%
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '1s|#!.*|#!${PERL5}|' ${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/libexec/
|
|
@${INSTALL} -d ${EXAMPLESDIR}/
|
|
@${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf ${EXAMPLESDIR}/
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|