-
-
Save yannleretaille/1a45e6d55f7ed3833f9426c2fea29f2d to your computer and use it in GitHub Desktop.
# Maintainer: Daniel M. Capella <[email protected]> | |
# Contributor: ZaZam <zazaamm ät gmail döt com> | |
# Contributor: Yegorius <[email protected]> | |
pkgname=pulseaudio-dlna | |
pkgver=0.6.1 | |
pkgrel=1 | |
pkgdesc='Small DLNA server which brings DLNA/UPnP support to PulseAudio' | |
arch=('x86_64') | |
url=https://github.com/Cygn/pulseaudio-dlna/ | |
license=('GPL3') | |
depends=('python-chardet' 'python-dbus' 'python-docopt' 'python-gobject' | |
'python-lxml' 'python-netifaces' 'python-notify2' 'python-psutil' | |
'python-pychromecast' 'python-pyroute2' 'python-requests' | |
'python-setproctitle' 'python-protobuf' 'python-setuptools' | |
'python-zeroconf' 'python-urllib3') | |
makedepends=('git' 'help2man') | |
optdepends=('faac: AAC transcoding support' | |
'ffmpeg: multiple formats support' | |
'flac: FLAC transcoding support' | |
'lame: MP3 transcoding support' | |
'opus-tools: OPUS transcoding support' | |
'sox: WAV transcoding support' | |
'vorbis-tools: OGG transcoding support') | |
source=('https://github.com/Cygn/pulseaudio-dlna/archive/0.6.1.tar.gz') | |
sha256sums=('497743700377389ae03ffae2d8fbf8c49ed8ec219d53fd8ca7f0aea0d464b15d') | |
prepare() { | |
cd "$pkgname-$pkgver" | |
sed -i '/dbus-python/d' setup.py | |
} | |
build() { | |
cd "$pkgname-$pkgver" | |
python setup.py build | |
} | |
package() { | |
cd "$pkgname-$pkgver" | |
make manpage | |
python setup.py build --build-lib=build/python \ | |
install --root="$pkgdir" --optimize=1 | |
} | |
# vim:set ts=2 sw=2 et: |
Sure, thanks for the fast reply!
But where are the .install and the .service file?
that's some stuff I use in my local copy, I removed them for now
still not really:
==> Starting package()...
virtualenv --system-site-packages -p python3 .
make: virtualenv: No such file or directory
make: *** [Makefile:29: bin/pip3] Error 127
==> ERROR: A failure occurred in package().
I don't use virtualenv and would prefer not to. What it is needed for?
/usr/bin/python /tmp/tmp87t8bc08.py removing /tmp/tmp87t8bc08.py running install_data creating /home/amo/pulseaudio-dlna-cygn/pkg/pulseaudio-dlna/usr/share creating /home/amo/pulseaudio-dlna-cygn/pkg/pulseaudio-dlna/usr/share/man creating /home/amo/pulseaudio-dlna-cygn/pkg/pulseaudio-dlna/usr/share/man/man1 error: can't copy 'man/pulseaudio-dlna.1.gz': doesn't exist or not a regular file ==> ERROR: A failure occurred in package(). Aborting...
Had the same error when using the PKGBUILD posted on pulseaudio-dlna's AUR page.
I checked the release archive from the Github repo's releases page and indeed man/pulseaudio-dlna.1.gz
doesn't exist in the archive although it exists in the source tree (at latest commit at least). I ended up just copying it into the archive and building and installing went just fine.
still not really:
==> Starting package()... virtualenv --system-site-packages -p python3 . make: virtualenv: No such file or directory make: *** [Makefile:29: bin/pip3] Error 127 ==> ERROR: A failure occurred in package().
I don't use virtualenv and would prefer not to. What it is needed for?
virtualenv is a Python specific tool that is used to create per-project environments with symlinks or copies of the system's Python interpreter and it's own site-packages
(library folders).
There is no harm in installing it.
It enables developers to install third-party packages without touching the system installation and on a per-project basis such that for example you only need user rights to install 3rd party libs and you can make sure packages/versions don't conflict with libs used by other packages installed in the system.
I get that. Still, if one creates a PKGBUILD, I'd consider it cleaner and more consistent with python packaging on archlinux to avoid virtual envs.
Anyway, thank you for your comments and hints on how to successfully build it!
@amo13: hmm, can you try it again with this updated version?