summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel M. Capella2019-01-20 00:34:21 -0500
committerDaniel M. Capella2019-01-20 00:34:21 -0500
commit37ac05aecca85a1f7242fdb29522503879bb73b2 (patch)
tree0e87f2ae3e54e5a94038451bfea8f267a854578b
parentd637287d09e470685053ee208af147a095baa429 (diff)
downloadaur-37ac05aecca85a1f7242fdb29522503879bb73b2.tar.gz
Do not use env
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ef434269ca4f..9880e90fae0c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
pkgbase = mkchromecast
pkgdesc = Cast Audio/Video to your Google Cast and Sonos Devices
pkgver = 0.3.8.1
- pkgrel = 1
+ pkgrel = 2
url = http://mkchromecast.com
arch = any
license = MIT
- makedepends = python-setuptools
depends = faac
depends = flac
depends = lame
diff --git a/PKGBUILD b/PKGBUILD
index d68d78004252..c038023ecec6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,14 +2,13 @@
pkgname=mkchromecast
pkgver=0.3.8.1
-pkgrel=1
+pkgrel=2
pkgdesc='Cast Audio/Video to your Google Cast and Sonos Devices'
arch=('any')
url=http://mkchromecast.com
license=('MIT')
depends=('faac' 'flac' 'lame' 'python-flask' 'python-gobject' 'python-psutil'
'sox' 'vorbis-tools')
-makedepends=('python-setuptools')
optdepends=('alsa-utils: to cast with ALSA'
'ffmpeg: for ffmpeg backend (which is also needed to cast with ALSA)'
'gstreamer: for gstreamer backend'
@@ -26,6 +25,7 @@ sha512sums=('ee66450768f3221500f198bf618120f02b93108797209ca0d6c2be9f882eee36753
prepare() {
cd $pkgname-$pkgver
+ sed -i '1s/env //' mkchromecast.py
patch -Np1 --no-backup-if-mismatch -i ../pychromecast_optional.patch
}