summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 072941130628de8fa0396bef63e561c0d6d909d5 (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
# Maintainer:  Frank Seifferth <frankseifferth@posteo.net>

pkgname=abricotine-git
_pkgname=abricotine
conflicts=("abricotine")
provides=("abricotine")
pkgver=latest
pkgrel=1
pkgdesc="A markdown editor with inline preview"
arch=('x86_64')
url="http://abricotine.brrd.fr"
license=('GPL3')
depends=('libxss')
makedepends=('npm')
source=("abricotine::git+https://github.com/brrd/abricotine"
        "abricotine.desktop")
sha256sums=('SKIP'
            '164d0042ffe461ca0418709a59be29b433055589b661be4d6555c07df42b383c')

pkgver() {
    cd "$srcdir/abricotine"
    printf "%s" "$(git describe --long --tags |
        sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}

build() {
  cd "$srcdir/abricotine"

  npm install --cache ../cache --devdir="$srcdir/devdir"
  npm run packager
}

package() {
    cd "$srcdir/abricotine"

    install -d "$pkgdir/opt/abricotine"
    cp -r dist/*/* "$pkgdir/opt/abricotine"

    install -d "$pkgdir/usr/bin"
    ln -s "/opt/abricotine/abricotine" "$pkgdir/usr/bin/abricotine"

    install -Dm644 "../abricotine.desktop" -t "$pkgdir/usr/share/applications/"
    install -Dm644 "icons/abricotine@2x.png" "$pkgdir/usr/share/pixmaps/abricotine.png"
}