summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 752625e131e34272d0cc53f4e205af633f7d4ae0 (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: D. Can Celasun <can[at]dcc[dot]im>
pkgname=nylas-mail-git
_pkgname=nylas-mail
pkgver=1.0.26.1389.g6d2c2b2af
pkgrel=1
epoch=1 # Versions numbers went from 2.x to 1.x during the N1 -> Mail switch, so this is necessary
pkgdesc="Nylas Mail: A new mail client for Linux, Mac and Windows, built on the modern web and designed to be extended. (formerly N1, git version)"
arch=('x86_64')
url="https://nylas.com"
license=('MIT')
makedepends=('nvm' 'grunt-cli')
depends=('gtk2' 'libgnome-keyring' 'gnome-keyring' 'desktop-file-utils' 'python2' 'gconf' 'nodejs' 'libnotify' 'libxtst' 'nss' 'alsa-lib' 'libxss')
conflicts=('nylas-mail' 'nylas-mail-bin')
source=('git://github.com/nylas/nylas-mail.git'
        ${_pkgname}.desktop
        ${_pkgname}.png)
md5sums=('SKIP'
         '267b600b1fcddc876b829c8579437770'
         'abb3ea88173fe5dd12dab8c3737dc087')
install=${_pkgname}.install
pkgver() {
  cd ${_pkgname}
  git describe --always | sed 's|-|.|g'
}
build() {
    export NVM_DIR="${srcdir}/.nvm"
    source /usr/share/nvm/nvm.sh
    source /usr/share/nvm/install-nvm-exec
    unset NPM_CONFIG_PREFIX
    nvm install v6.9.1
    nvm use --delete-prefix v6.9.1

    cd "${srcdir}/${_pkgname}"
    INSTALL_TARGET=client npm install
    sed -i '/create-deb-installer/d' packages/client-app/build/Gruntfile.js
    sed -i '/create-rpm-installer/d' packages/client-app/build/Gruntfile.js
    npm run build-client
}
package() {
    mkdir -p "${pkgdir}"/usr/share/${_pkgname}
    mkdir -p "${pkgdir}"/usr/bin
    mkdir -p "${pkgdir}"/usr/share/licenses/${_pkgname}
    mkdir -p "${pkgdir}"/usr/share/pixmaps
    mkdir -p "${pkgdir}"/usr/share/applications

    cp "${srcdir}"/${_pkgname}.png "${pkgdir}"/usr/share/pixmaps
    cp "${srcdir}"/${_pkgname}.desktop "${pkgdir}"/usr/share/applications
    cp "${srcdir}"/${_pkgname}/packages/client-app/dist/nylas-linux-x64/* "${pkgdir}"/usr/share/${_pkgname} -R

    # Remove references to $srcdir from generated package.json files
    # This doesn't remove all references, but still better than nothing.
    find . -name "package.json" -exec sed -i '/_where/d' {} \;

    cd "${pkgdir}"
    find -name '*.py' -exec sed -i 's|^#!/usr/bin/env python\s*$|#!/usr/bin/env python2|' {} \;
    find -name '*.py' -exec sed -i 's|^#!/usr/bin/python\s*$|#!/usr/bin/python2|' {} \;
    
    chmod 755 "${pkgdir}"/usr/share/${_pkgname}/nylas
    chmod 755 "${pkgdir}"/usr/share/${_pkgname}/resources/apm/bin/{node,apm}

    mkdir -p "${pkgdir}"/usr/share/licenses/${_pkgname}/

    rm -rf "${pkgdir}/usr/bin/nylas"
    ln -s /usr/share/${_pkgname}/nylas "${pkgdir}"/usr/bin/nylas
    ln -s /usr/share/${_pkgname}/LICENSE "${pkgdir}"/usr/share/licenses/${_pkgname}/LICENSE
}