44 lines
1.5 KiB
Bash
44 lines
1.5 KiB
Bash
# Template file for 'mopidy'
|
|
pkgname=mopidy
|
|
version=3.4.2
|
|
revision=1
|
|
build_style=python3-module
|
|
make_check_args="--ignore tests/test_help.py"
|
|
hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme
|
|
python3-pykka"
|
|
depends="gst1-python3 gst-plugins-good1 gst-plugins-ugly1 gst-plugins-bad1
|
|
python3-dbus python3-gobject python3-tornado python3-pykka python3-setuptools
|
|
python3-requests"
|
|
checkdepends="${depends} python3-pytest python3-responses"
|
|
short_desc="Music server for MPD, Spotify, SoundClound and others"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://www.mopidy.com"
|
|
changelog="https://github.com/mopidy/mopidy/raw/develop/docs/changelog.rst"
|
|
distfiles="${PYPI_SITE}/M/Mopidy/Mopidy-${version}.tar.gz"
|
|
checksum=ada9ecbfc09eecc8c9e6742a8a4fea1632a134a1ab060527d8aa3d36df0547b6
|
|
|
|
conf_files="/etc/mopidy/*.conf"
|
|
system_accounts="mopidy"
|
|
mopidy_homedir="/var/lib/mopidy/"
|
|
mopidy_groups="audio"
|
|
make_dirs="
|
|
/var/lib/mopidy 0755 mopidy mopidy
|
|
/var/cache/mopidy 0755 mopidy mopidy"
|
|
|
|
post_install() {
|
|
vmkdir usr/share/applications/
|
|
vcopy extra/desktop/mopidy.desktop usr/share/applications/
|
|
vbin extra/mopidyctl/mopidyctl
|
|
vman extra/mopidyctl/mopidyctl.8
|
|
python3 setup.py build
|
|
make -C docs html man
|
|
vman docs/_build/man/mopidy.1
|
|
vmkdir usr/share/doc/mopidy/
|
|
cp -r docs/_build/html/* ${DESTDIR}/usr/share/doc/mopidy/
|
|
vinstall ${FILESDIR}/mopidy.conf 644 etc/mopidy/
|
|
vinstall ${FILESDIR}/logging.conf 644 etc/mopidy/
|
|
vsv mopidy
|
|
vdoc "${FILESDIR}/README.voidlinux"
|
|
}
|