summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 51c8f6d443405a64341361859dc7de145bfc584f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Florian Maunier <fmauneko@dissidence.ovh>

pkgname=mopidy-autoplay
pkgver=0.2.2
pkgrel=1
pkgdesc="Mopidy extension to automatically pick up where you left off and start playing the last track from the position before Mopidy was shut down."
arch=('any')
url="https://github.com/sphh/mopidy-autoplay"
license=('APACHE')
depends=(
  'mopidy>=3'
  python-pykka
  python-setuptools
)
source=(
  "$pkgname-$pkgver.tar.gz::https://github.com/sphh/$pkgname/archive/v$pkgver.tar.gz"
)
sha256sums=('fc49aca41ff5ae77559dabac4219b6d9dfa32962bcabef73c4933548d6d1182b')

package() {
  cd "$srcdir/$pkgname-$pkgver"
  python3 setup.py install --root="$pkgdir/" --optimize=1
}