mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
5d26fb9f7f
When buying electronic music from Amazon, one is required to download a so-called .amz-file, which in essence is a download list. This file is necessary to conduct the download of purchased music, for which a propriatary program from Amazon is required. This program is available for Windows and Ubuntu Linux, but not for FreeBSD. net/clamz redresses that situation. However, before being able to download the .amz, one is required to install said propriatary program, which sets a cookie that allows to download amz-files. This is infeasible for users of FreeBSD. On the project site of net/clamz, an alternative to downloading said program is presented, which in essence is an alternative way to have aformentioned cookie set. PR: ports/160705 Submitted by: Christopher J. Ruwe <cjr@cruwe.de> Approved by: maintainer timeout (4 weeks)
35 lines
708 B
Makefile
35 lines
708 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.4
|
|
PORTREVISION= 1
|
|
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.6:${PORTSDIR}/ftp/curl \
|
|
expat.6:${PORTSDIR}/textproc/expat2 \
|
|
gcrypt.18:${PORTSDIR}/security/libgcrypt
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= pkgconfig
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
post-install:
|
|
@${ECHO}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO}
|
|
|
|
.include <bsd.port.mk>
|