blob: 994333bb42d72967bb40f08a6983e4391afce3af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: D. Can Celasun <can[at]dcc[dot]im>
pkgname=kepubify-bin
_pkgname=kepubify
pkgver=2.5.1
pkgrel=1
pkgdesc="Convert your ePubs into kepubs, with a easy-to-use command-line tool."
arch=('x86_64')
url="https://geek1011.github.io/kepubify"
license=('MIT')
source=(${_pkgname}-${pkgver}::https://github.com/geek1011/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-linux-64bit
seriesmeta-${pkgver}::https://github.com/geek1011/${_pkgname}/releases/download/v${pkgver}/seriesmeta-linux-64bit)
md5sums=('05700f7cc3e49bbe64a051c8fce4b1e4'
'd3f3bcf0aec58697ba0c0d2fa37bf4e9')
package() {
install -d "${pkgdir}/usr/bin"
install -m755 "${srcdir}/${_pkgname}-${pkgver}" "${pkgdir}"/usr/bin/${_pkgname}
install -m755 "${srcdir}/seriesmeta-${pkgver}" "${pkgdir}"/usr/bin/seriesmeta
}
|