(using modified portbump, thanks zhuk@) "exciting" one in databases/py-sqlalchemy; port had a bad PKG_ARCH=* line and also contained .so modules.
38 lines
922 B
Makefile
38 lines
922 B
Makefile
# $OpenBSD: Makefile,v 1.5 2015/04/21 18:40:20 sthen Exp $
|
|
|
|
COMMENT = mpd client to scrobble track info to last.fm
|
|
|
|
V = 0.22
|
|
DISTNAME = mpdscribble-$V
|
|
REVISION = 0
|
|
|
|
CATEGORIES = audio
|
|
|
|
HOMEPAGE = http://mpd.wikia.com/wiki/Client:Mpdscribble
|
|
|
|
MAINTAINER = Steven Mestdagh <steven@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c curl glib-2.0 mpdclient pthread
|
|
|
|
MASTER_SITES = http://www.musicpd.org/download/mpdscribble/$V/
|
|
|
|
MODULES = devel/gettext
|
|
|
|
LIB_DEPENDS = net/curl \
|
|
devel/glib2 \
|
|
audio/libmpdclient
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --with-http-client=curl
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/mpdscribble ${PREFIX}/bin/mpdscribble
|
|
${INSTALL_MAN} ${WRKSRC}/doc/mpdscribble.1 ${PREFIX}/man/man1/mpdscribble.1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mpdscribble
|
|
${INSTALL_DATA} ${WRKSRC}/doc/mpdscribble.conf ${PREFIX}/share/doc/mpdscribble
|
|
|
|
.include <bsd.port.mk>
|