blob: 3c70c18990bf16066646768d141780f3c28e44aa (
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
|
# Maintainer : Antonio Orefice <xt7player@gmail.com>
pkgname=xt7-player-mpv-git
pkgver=20220404
pkgrel=1
pkgdesc="Aims to be an 'almost complete' but usable mpv gui"
arch=('any')
url="http://xt7-player.sourceforge.net/xt7forum/"
license=('custom')
depends=(
'gambas3-gb-args'
'gambas3-gb-compress'
'gambas3-gb-dbus'
'gambas3-gb-desktop'
'gambas3-gb-desktop-x11'
'gambas3-gb-form'
'gambas3-gb-form-dialog'
'gambas3-gb-form-mdi'
'gambas3-gb-form-stock'
'gambas3-gb-image'
'gambas3-gb-libxml'
'gambas3-gb-net'
'gambas3-gb-net-curl'
'gambas3-gb-qt5'
'gambas3-gb-settings'
'gambas3-gb-signal'
'gambas3-gb-util-web'
'gambas3-gb-web'
'mpv>=0.28'
'taglib'
'yt-dlp'
'wget'
)
makedepends=('gambas3-dev-tools' 'git')
optdepends=('python2: for Opensubtitles.org integration' 'ladspa: more audio plugins' 'linuxtv-dvb-apps: for DVB support' 'dvbsnoop: DVBT EPG' 'xdg-utils: for desktop integration' 'xbindkeys: for global hotkeys support' 'aria2: for youtube segmented downloads')
_gitroot="https://github.com/kokoko3k/xt7-player-mpv.git"
build() {
cd $srcdir
rm -R $srcdir/xt7-player-mpv &>/dev/null || echo "No old repository found, proceding to git clone..."
git clone --depth 1 $_gitroot || return 1
cd $srcdir/xt7-player-mpv
gbc3 -e -a -g -t -f public-module -f public-control || gbc3 -e -a -g -t -p -m
gba3
}
package() {
cd xt7-player-mpv
mv xt7-player-mpv.gambas xt7-player-mpv-git.gambas
mv xt7-player-mpv.desktop xt7-player-mpv-git.desktop
mv xt7-player-mpv.png xt7-player-mpv-git.png
sed -i 's/Name=xt7-player-mpv/Name=xt7-player-mpv-git/' ./xt7-player-mpv-git.desktop
sed -i 's/Icon=xt7-player-mpv/Icon=xt7-player-mpv-git/' ./xt7-player-mpv-git.desktop
sed -i 's/xt7-player-mpv.gambas/xt7-player-mpv-git/' ./xt7-player-mpv-git.desktop
# sed -i 's/xt7-player.png/xt7-player-git.png/' ./xt7-player-git.desktop
install -d ${pkgdir}/usr/bin
install -m755 xt7-player-mpv-git.gambas ${pkgdir}/usr/bin/xt7-player-mpv-git
install -D xt7-player-mpv-git.png ${pkgdir}/usr/share/pixmaps/xt7-player-mpv-git.png
install -D xt7-player-mpv-git.desktop ${pkgdir}/usr/share/applications/xt7-player-mpv-git.desktop
}
|