forked from arch-noob/filebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKGBUILD
60 lines (46 loc) · 1.48 KB
/
PKGBUILD
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
# Maintainer: Roman Vasilev <[email protected]>
# Maintainer: max.bra <max dot bra at alice dot it>
# Contributor: nadolph
# Contributor: dcelasun
# Contributor: said
# Contributor: Kaurin <milos dot kaurin at gmail>
# Contributor: Nathan Owe <ndowens04 at gmail>
pkgname=filebot
pkgver=4.9.2
pkgrel=6
pkgdesc="The ultimate TV and Movie Renamer"
arch=('i686' 'x86_64' 'aarch64' 'armv7l' 'armv7h')
url="https://www.filebot.net/"
license=('Commercial')
#groups=()
depends=('jre11-openjdk' 'java11-openjfx>=11.0.10.u1' 'fontconfig' 'chromaprint')
makedepends=()
checkdepends=()
optdepends=('libzen: Required by libmediainfo'
'libmediainfo: Read media info such as video codec, resolution or duration'
'gvfs: Drag-n-Drop from GVFS remote filesystems')
provides=('filebot')
conflicts=('filebot47' 'filebot-git')
#replaces=()
#backup=()
#options=()
install=$pkgname.install
#changelog=
source=("https://get.filebot.net/filebot/FileBot_${pkgver}/FileBot_${pkgver}-aur.tar.xz"
"filebot.sh")
#noextract=()
md5sums=('8417980b971ad2099066216b815f50af'
'9b7ba1e301b3f4c8b9a751d6a00414ea')
#validpgpkeys=()
#prepare() {}
#build() {}
#check() {}
package() {
mkdir -p $pkgdir/usr/bin
# mkdir -p $pkgdir/usr/share/$pkgname/openjfx
mkdir -p $pkgdir/usr/share/$pkgname
install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
cd $srcdir
cp -dpr --no-preserve=ownership * "$pkgdir"
# ln -sf $srcdir/usr/share/$pkgname/bin/$pkgname.sh $pkgdir/usr/bin/$pkgname
}