Add port audio/cmus-post.fm:

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/
This commit is contained in:
Andrew Pantyukhin 2007-03-08 19:07:26 +00:00
parent 356ac2d4a5
commit 48a0678b47
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=186920
5 changed files with 58 additions and 0 deletions

View File

@ -83,6 +83,7 @@
SUBDIR += cmp3
SUBDIR += cmt
SUBDIR += cmus
SUBDIR += cmus-post.fm
SUBDIR += coverhunter
SUBDIR += cowbell
SUBDIR += cpige

View File

@ -0,0 +1,36 @@
# 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>

View File

@ -0,0 +1,3 @@
MD5 (post.fm-0.1.tar.bz2) = 6030990a3f336b38101815e3111165a5
SHA256 (post.fm-0.1.tar.bz2) = 7f89339d472a31c27831bff7fde6986391cf68be07203097481b1047f7262be1
SIZE (post.fm-0.1.tar.bz2) = 2621

View File

@ -0,0 +1,11 @@
=====================================================================
To start using post.fm, please complete the following steps:
1. Configure it by copying %%EXAMPLESDIR%%/post.fm.conf
into ~/.cmus/ and editing it to your liking
2. Enable it by appending this setting to your ~/.cmus/rc:
set status_display_program=/usr/local/libexec/post.fm
=====================================================================

View File

@ -0,0 +1,7 @@
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/