summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6936e7b547ea25c27146dce77f5f550cbb9c2323 (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
# Maintainer: Mikael Blomstrand <gmail: chawlindel>
# Contributor: MaryJaneInChain <gmail.com@maryjaneinchain>
# Contributor: Michael Goehler <somebody dot here at gmx dot de>

pkgname=remarkable
replaces=('remarkable-webkit2gtk')
pkgver=1.87
pkgrel=2
pkgdesc="A free fully featured markdown editor for Linux."
arch=('any')
url="http://remarkableapp.github.io"
license=('MIT')
depends=('python'
         'python-cairo'
         'python-gobject'
         'python-markdown'
         'python-beautifulsoup4'
         'python-gtkspellcheck'
         'python-lxml'
         'webkit2gtk'
         'wkhtmltopdf'
         'gtksourceview3'
         )
makedepends=('python')
optdepends=('python-lxml: export to HTML format support')

install="remarkable.install"
source=("https://github.com/jamiemcg/Remarkable/archive/v${pkgver}.tar.gz"
        "0003-fixes-184-port-to-WebKit2Gtk.patch"
        "0004-fixes-175-Live-Preview-Mode-Executes-JavaScript.patch"
        "remarkable.patch"
        "remarkable.install"
        "LICENSE")

sha1sums=('a492dc5d0a276f36846a99287ae93c02e22a5cd8'
          '097f12a6f499bd39b99c32301a9027a9457eaeac'
          'd90a26e2830f0306a07b76dc69aa211840f0223e'
          'd9fc74c5a0136649f670a345e16c1c88d21a97d2'
          'bdbfb750df9e5fb3022f47a46a80555259628cd1'
          '6e5ea06076c85fdd25b79bfc41588f7f7ee9ba29')

prepare() {
    msg2 "Applying patches for webkit2gtk..."
    cat *.patch | patch -p1 -d "${srcdir}/Remarkable-${pkgver}"
}

package() {
    _python_site=$(python -c 'import site; print(site.getsitepackages()[0]);')
    [ -z ${_python_site} ] && echo "error: could not identify python site_packages directory" && return 1

    install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
    
    cd "Remarkable-${pkgver}"

    install -Dm 755 "bin/remarkable" "${pkgdir}/usr/bin/remarkable"
    install -D "debian/remarkable.mime" "${pkgdir}/usr/lib/mime/packages/remarkable"
    install -D "data/media/remarkable.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/remarkable.svg"
    install -D remarkable.desktop "${pkgdir}/usr/share/applications/remarkable.desktop"
    
    mv data/glib-2.0 "${pkgdir}/usr/share/"

    install -d "${pkgdir}/${_python_site}"
    mv markdown pdfkit remarkable remarkable_lib "${pkgdir}/${_python_site}/"

    mv data "${pkgdir}/usr/share/remarkable/"
}