diff options
Diffstat (limited to 'PKGBUILD')
| -rw-r--r-- | PKGBUILD | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..ffd9a55 --- /dev/null +++ b/PKGBUILD | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | # Maintainer: zxp19821005 <zxp19821005 at 163 dot com> | ||
| 2 | _pkgname=thorium | ||
| 3 | pkgname="${_pkgname}-reader-bin" | ||
| 4 | _appname=Thorium | ||
| 5 | _fullname="${_appname}Reader" | ||
| 6 | pkgver=2.3.0 | ||
| 7 | pkgrel=1 | ||
| 8 | pkgdesc="Cross-platform desktop reading app based on the Readium Desktop toolkit" | ||
| 9 | arch=('x86_64') | ||
| 10 | url="https://www.edrlab.org/software/thorium-reader/" | ||
| 11 | _ghurl="https://github.com/edrlab/thorium-reader" | ||
| 12 | license=('BSD') | ||
| 13 | conflicts=("${pkgname%-bin}") | ||
| 14 | provides=("${pkgname%-bin}=${pkgver}") | ||
| 15 | depends=( | ||
| 16 | 'bash' | ||
| 17 | 'electron25' | ||
| 18 | 'hicolor-icon-theme' | ||
| 19 | ) | ||
| 20 | source=( | ||
| 21 | "${pkgname%-bin}-${pkgver}.deb::${_ghurl}/releases/download/v${pkgver}/EDRLab.${_fullname}_${pkgver}_amd64.deb" | ||
| 22 | "LICENSE::https://raw.githubusercontent.com/edrlab/thorium-reader/v${pkgver}/LICENSE" | ||
| 23 | "${pkgname%-bin}.sh" | ||
| 24 | ) | ||
| 25 | sha256sums=('1007cd9083715d32427e4d39f8a4cac69cf428cfc4521950571dc2290a308f23' | ||
| 26 | 'e95e504f42685015445b4a0a80dfdaa86e5b2b2c0e317bca2bcbb51330ec61e5' | ||
| 27 | 'c6376c7762d524d36e463659d1b1a15870e8a57b1d8b257a8395072f04f97456') | ||
| 28 | build() { | ||
| 29 | bsdtar -xf "${srcdir}/data.tar.xz" | ||
| 30 | sed -e "s|Name=${_appname}|Name=${_fullname}|g" \ | ||
| 31 | -e "s|/opt/${_appname}/${_pkgname} %U|${pkgname%-bin}|g" \ | ||
| 32 | -e "s|Icon=${_pkgname}|Icon=${pkgname%-bin}|g" \ | ||
| 33 | -i "${srcdir}/usr/share/applications/${_pkgname}.desktop" | ||
| 34 | } | ||
| 35 | package() { | ||
| 36 | install -Dm755 "${srcdir}/${pkgname%-bin}.sh" "${pkgdir}/usr/bin/${pkgname%-bin}" | ||
| 37 | install -Dm755 "${srcdir}/opt/${_appname}/resources/app.asar" -t "${pkgdir}/usr/lib/${pkgname%-bin}" | ||
| 38 | install -Dm644 "${srcdir}/opt/${_appname}/resources/app.asar.unpacked/external-assets/lcp.node" \ | ||
| 39 | -t "${pkgdir}/usr/lib/${pkgname%-bin}app.asar.unpacked/external-assets" | ||
| 40 | for _icons in 256x256 512x512 1024x1024;do | ||
| 41 | install -Dm644 "${srcdir}/usr/share/icons/hicolor/${_icons}/apps/${_pkgname}.png" \ | ||
| 42 | "${pkgdir}/usr/share/icons/hicolor/${_icons}/apps/${pkgname%-bin}.png" | ||
| 43 | done | ||
| 44 | install -Dm644 "${srcdir}/usr/share/applications/${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname%-bin}.desktop" | ||
| 45 | install -Dm644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}" | ||
| 46 | } \ No newline at end of file | ||
