blob: 3834e3b3ffba991f2c8ec269f5e20c82c01d9fbf (
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
|
# Maintainer: Groctel <aur@taxorubio.com>
# shellcheck disable=SC2034,SC2154,SC2164
_name=fb2converter
pkgname=fb2converter-bin
pkgver=1.78.5
pkgrel=1
pkgdesc="Unified converter of FB2 files into epub2, kepub, mobi and azw3 formats."
arch=("x86_64")
license=("GPL-3.0-only")
url="https://github.com/rupor-github/$_name"
source=("$url/releases/download/v$pkgver/fb2c-linux-amd64.zip")
sha512sums=('364a5944385b0aac2f16b0bdafe56a82e16b46a6897977002b47c30fc53f982c8df556815a6494fe6135c37073b119cb4a51bf8ba739704579f4b72bd9df9eed')
provides=("fb2c" "kindlegen")
conflicts=("kindlegen")
package () {
install -D -m755 fb2c "$pkgdir/usr/bin/fb2c"
install -D -m755 kindlegen "$pkgdir/usr/bin/kindlegen"
install -D -m644 /usr/share/licenses/spdx/GPL-3.0-only.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|