blob: 17ca1688e521d8e0bbd849469b0d2e86eb4e1e04 (
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
|
# Maintainer: Anna Schumaker <anna@nowheycreamery.com>
pkgname=emmental
pkgver=3.2.2
pkgrel=1
pkgdesc='The cheesy music player'
url='https://git.nowheycreamery.com/anna/emmental'
arch=('any')
license=('GPL3')
depends=(gstreamer gst-plugins-base gst-plugins-good gtk4 libadwaita python-dateutil python-gobject python-liblistenbrainz python-musicbrainzngs python-mutagen python-pyxdg xdg-user-dirs-gtk)
makedepends=(git desktop-file-utils)
optdepends=(gst-plugins-bad gst-plugins-ugly)
checkdepends=(flake8 python-flake8-docstrings python-pytest python-pytest-timeout python-pytest-subtests)
source=("https://git.nowheycreamery.com/anna/emmental/archive/emmental-$pkgver.tar.gz")
sha256sums=(90d85a7ac80a8c9024614c850db3355f36fd2241c85fae3d54c3e316afbc5629)
prepare() {
cd $pkgname
if [ ! -f "mpris-spec/Makefile" ]; then
git clone https://gitlab.freedesktop.org/mpris/mpris-spec.git
fi
}
build() {
cd $pkgname
make mpris2
make emmental.gresource
}
package() {
cd $pkgname
make PREFIX="$pkgdir/usr" install
sed -i "s|$pkgdir||" $pkgdir/usr/bin/emmental
sed -i "s|$pkgdir||" $pkgdir/usr/share/applications/com.nowheycreamery.emmental.desktop
rm -f "$pkgdir/usr/share/applications/mimeinfo.cache"
}
check() {
cd $pkgname
make tests
}
|