summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 076f0305f3659f037a01a4de9fbafdd5e6b48905 (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
# Maintainer: John Beard <john dot j dot beard at gmail dot com>
# Author: Jonathan Lebon

pkgname=firefox-extension-textern-native-git
pkgver=0.6.876a83b
pkgrel=1
url="https://github.com/jlebon/textern"
license=('GPL')
pkgdesc='Native component of Textern Firefox extension'
arch=('any')
source=("git+https://github.com/jlebon/textern"
        "git+https://github.com/chrisjbillington/inotify_simple")
depends=('python' 'firefox')
makedepends=('git')
md5sums=('SKIP' 'SKIP')

prepare() {
    cd "$srcdir/textern"

    git submodule init
    git config submodule.native/inotify_simple.url "$srcdir/inotify_simple"
    git submodule update

    # fix lib64/lib issue
    sed 's/lib64/lib/g' -i Makefile
}

package() {
    cd "$srcdir/textern"

    make LIBEXEC="/usr/lib" DESTDIR="$pkgdir" native-install

    # correct the json file - refers to pkgbuild dir, should be installed dir
    sed -i -e "s|$pkgdir||g" "$pkgdir/usr/lib/mozilla/native-messaging-hosts/textern.json"
}