mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
cdbf23a172
download MP3 files from Amazon.com's music store. It is intended to serve as a substitute for Amazon's official MP3 Downloader, which is not free software (and therefore is only available in binary form for a limited set of platforms.) Clamz can be used to download either individual songs or complete albums that you have purchased from Amazon. Text from http://code.google.com/p/clamz/. WWW: http://code.google.com/p/clamz/ PR: 135401 Submitted by: Helko Glathe <glathe.helko@googlemail.com>
33 lines
768 B
Makefile
33 lines
768 B
Makefile
# New ports collection makefile for: clamz
|
|
# Date created: 2009-06-08
|
|
# Whom: Helko Glathe <glathe.helko@googlemail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= clamz
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= net audio
|
|
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
|
|
|
MAINTAINER= glathe.helko@googlemail.com
|
|
COMMENT= Command-line program to download MP3 files from Amazon's music store
|
|
|
|
LIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl \
|
|
expat.6:${PORTSDIR}/textproc/expat2 \
|
|
gcrypt.16:${PORTSDIR}/security/libgcrypt
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= pkgconfig
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} \
|
|
-e 's|^\(compile.*\)|\1 -I${LOCALBASE}/include|' \
|
|
-e 's|^\(LIBS\ =\)|\1 ${LOCALBASE}/lib/libexpat.so|' \
|
|
${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|