4f72f8582f
Clamz is a little command-line program to 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.
35 lines
782 B
Makefile
35 lines
782 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/10/19 16:33:52 jturner Exp $
|
|
|
|
COMMENT = downloader for the Amazon.com MP3 music store
|
|
|
|
DISTNAME = clamz-0.5
|
|
CATEGORIES = net
|
|
|
|
MAINTAINER = James Turner <james@calminferno.net>
|
|
|
|
HOMEPAGE = http://code.google.com/p/clamz/
|
|
MASTER_SITES = https://clamz.googlecode.com/files/
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c curl expat gcrypt gpg-error
|
|
|
|
MODULES = devel/gettext
|
|
|
|
LIB_DEPENDS = net/curl \
|
|
security/libgcrypt
|
|
|
|
RUN_DEPENDS = devel/desktop-file-utils \
|
|
misc/shared-mime-info
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
NO_TEST = Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/clamz
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/clamz/
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/clamz/
|
|
|
|
.include <bsd.port.mk>
|