# Description: Console audio player.
# URL: https://gitlab.com/tomaszg/mocp
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: autoconf-archive git curl libid3tag libmad libsndfile popt
# Optional: faad2 ffmpeg lame libmodplug libtimidity mpg123 musepack opusfile pulseaudio sndio speex taglib wavpack

name=moc
version=2.6alpha3
release=1
_commit=76a2ed3d6a4630122a962348ca6d52325765654d
source=("https://gitlab.com/tomaszg/mocp/-/archive/master/mocp-master.tar.gz?sha=$_commit")
renames=(mocp-$_commit.tar.gz)

build() {
    cd mocp-master

    sed -i "/AC_CONFIG_HEADERS/a AM_GNU_GETTEXT([external])\nAM_GNU_GETTEXT_VERSION(0.26)" configure.in

    autoreconf -ivf
    ./configure --prefix=/usr \
                --disable-cache \
                --disable-nls \
                --disable-debug

    make
    make DESTDIR="$PKG" install
    install -D -m 0644 -t "$PKG"/usr/share/moc/ config.example keymap.example
    rm -rf "$PKG"/usr/share/doc
    rm -f "$PKG"/usr/lib/moc/decoder_plugins/*.la
}
