2019-12-29 11:40:20 +01:00
|
|
|
# Description: Python library which provides a client interface for the Music Player Daemon
|
|
|
|
# URL: https://github.com/Mic92/python-mpd2
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: python3-setuptools
|
|
|
|
|
|
|
|
name=python3-mpd2
|
2020-06-08 18:30:46 +00:00
|
|
|
version=1.1.0
|
2019-12-29 11:40:20 +01:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/Mic92/python-mpd2/archive/v$version/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd python-mpd2-$version
|
2020-11-03 21:04:02 +00:00
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install --root=$PKG \
|
2019-12-29 11:40:20 +01:00
|
|
|
--optimize=1 \
|
|
|
|
--skip-build
|
|
|
|
}
|