blob: 149d18ecfa4c4aa530aa76bdf14b3f8b2b6861dc (
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.1
pkgrel=2
pkgdesc='The cheesy music player'
url='https://git.nowheycreamery.com/anna/emmental'
arch=('any')
license=('GPL3')
depends=(gstreamer gst-plugins-base gtk4 libadwaita python-dateutil python-gobject python-musicbrainzngs python-mutagen python-pyxdg xdg-user-dirs-gtk)
makedepends=(git desktop-file-utils)
optdepends=(gst-plugins-good 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=(05e015a8f09237cc025e4add707966b1e916f86b15dc209bcaff696b98f3ed00)
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
}
|