2018-11-24 18:11:40 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.musicpd.org/clients/mpdscribble/
|
|
|
|
TERMUX_PKG_DESCRIPTION="A Music Player Daemon (MPD) client which submits information about tracks being played to a scrobbler"
|
2019-07-25 16:07:17 +02:00
|
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
2018-11-24 18:11:40 +01:00
|
|
|
TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91"
|
|
|
|
TERMUX_PKG_VERSION=0.22
|
2019-08-14 13:27:16 +02:00
|
|
|
TERMUX_PKG_REVISION=2
|
2018-11-24 18:11:40 +01:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/MusicPlayerDaemon/mpdscribble/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
2019-07-25 16:07:17 +02:00
|
|
|
TERMUX_PKG_SHA256=9f6d73e1d0d44bf782c199732acc91bb07efc1c02ae04d037d711860dd8e4012
|
2018-11-24 18:11:40 +01:00
|
|
|
TERMUX_PKG_DEPENDS="libcurl, mpd, libmpdclient, glib"
|
2019-08-14 13:27:16 +02:00
|
|
|
TERMUX_PKG_CONFFILES="etc/mpdscribble.conf"
|
2018-11-24 18:11:40 +01:00
|
|
|
|
|
|
|
termux_step_pre_configure () {
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_post_make_install () {
|
|
|
|
install $TERMUX_PKG_SRCDIR/doc/mpdscribble.conf $TERMUX_PREFIX/etc/
|
|
|
|
}
|
|
|
|
termux_step_create_debscripts () {
|
|
|
|
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
|
|
|
|
echo "mkdir -p ~/.mpdscribble" >> postinst
|
|
|
|
echo "exit 0" >> postinst
|
|
|
|
chmod 0755 postinst
|
|
|
|
}
|