summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4d5cb22558fae3b2b38ef5531580fc4359668cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Maintainer: UnicornDarkness
# Contributor: Tom Kwok <contact@tomkwok.com>
# Contributor: Jorge Barroso <jorge.barroso.11 at gmail dot com>
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
# Contributor: Benjamin Wild <benwild@gmx.de>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Joshua Stiefer <facedelajunk@gmail.com>

pkgname=exaile
pkgver=4.1.3
pkgrel=7
pkgdesc="A full-featured Amarok-style media player for GTK+"
arch=('any')
url="https://exaile.org"
license=('GPL-2.0-only')
depends=('python>=3.8'
	'python-bsddb'
	'gtk3>=3.24.0'
	'gst-python>=1.16.0'
	'gst-plugins-base>=1.16.0'
	'gst-plugins-base-libs'
	'gst-plugins-good>=1.16.0'
	'python-mutagen>=1.44.0'
	'python-dbus'
	'python-cairo'
	'python-gobject>=3.24.0'
	'gvfs'
	'pango'
	'hicolor-icon-theme'
	'libgirepository'
	'glib2'
	'gstreamer'
	'gdk-pixbuf2'
	'at-spi2-core')
makedepends=('pygobject-devel>=3.24.0' 'help2man')
checkdepends=('python-pytest'
	'python-sunau'
	'python-pipes')
optdepends=('udisks2: device detection'
	'python-discid: CD info'
	'python-musicbrainzngs: CD info / Musicbrainz covers'
	'spydaap: DAAP server'
	'python-zeroconf: DAAP plugins (daapserver and daapclient)'
	'python-pylast: Last.FM integration'
	'python-lxml: lyrics from lyricsmania.com (lyricsmania)'
	'python-feedparser: podcast plugin'
	'webkit2gtk: Wikipedia info'
	'libkeybinder3: Xlib-based hotkeys'
	'librsvg: scalable icons'
	'libnotify: native notifications'
	'streamripper: recording streams'
	'moodbar: moodbar plugin'
	'gst-plugins-bad: BPM Counter plugin'
	'python-beautifulsoup4: lyrics from lyrics.wikia.com (lyricwiki)'
	'ipython: ipconsole plugin')
source=("$pkgname-$pkgver.tar.gz::https://github.com/exaile/exaile/archive/$pkgver.tar.gz"
	"0001-pipes.patch::https://github.com/exaile/exaile/commit/f37bb5e3ef33f05c12fd30fcbf38207498d7a909.patch")
sha512sums=('16b31331a31f0a2e088f177c8a01ef47603b07fe94cbb19869a4caeaec2da03cacaa07d5b0eb50052645449e07620e2c58f202007108af73e20cf744d70bb556'
            'a68f6632e61500a656fbf287f420814503cd6b9ac5c06fa7d8812e402ebc486cc72c19e1f18cb560999aee0b70e31f0aa47f9465d1006b596ea6a18ccd9c403e')

prepare() {
	cd "$srcdir/$pkgname-$pkgver"
	patch -Np1 -i ../0001-pipes.patch # https://aur.archlinux.org/packages/exaile#comment-1003707
}

build() {
	cd "$srcdir/$pkgname-$pkgver"
	make PREFIX="/usr"
}

check() {
	cd "$srcdir/$pkgname-$pkgver"
	make PYTEST=py.test test
}

package() {
	cd "$srcdir/$pkgname-$pkgver"
	make PREFIX="/usr" DESTDIR="$pkgdir" install
}