summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9945e76a2f0457e5adf930313ca46b8b4eb74ed8 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Maintainer: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
# Contributor: Matheus de Alcantara <matheus.de.alcantara@gmail.com>
# Contributor: Brenton Horne <brentonhorne77 at gmail dot com>
# Contributor: Nicola Squartini <tensor5@gmail.com>

pkgname=atom-editor-git
pkgver=1.6.0.beta0.r8343.g3a046f511
pkgrel=1
pkgdesc='Hackable text editor for the 21st Century - git channel.'
url="https://atom.io/"
arch=('x86_64' 'i686')
license=('MIT', 'custom')
depends=('gconf' 'nodejs' 'npm' 'libsecret' 'python2' 'libx11' 'libxkbfile' 'electron' 'apm')
optdepends=('gvfs: file deletion support'
            'ctags: symbol indexing support')
source=(
    "${pkgname}::git+https://github.com/atom/atom.git"
    'atom.desktop'
    'atom.js'
    'dugite-use-system-git.patch'
    'electron-3.patch'
    'fix-atom-sh.patch'
    'fix-license-path.patch'
    'fix-middle-click.patch'
    'fix-restart.patch'
    'symbols-view-use-system-ctags.patch'
    'use-system-apm.patch'
    'use-system-electron.patch'
)
sha256sums=(
    'SKIP'                                                             # git repo
    'bce0b6ac4a3d083db3b953d89489947867df5832deea876cc8c4725399b1de9d' # atom.desktop
    'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd' # atom.js
    '530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153' # dugite-use-system-git.patch
    'b0b87bcbcfeff809fbc45b56bcf77efe26d6a2091f161a6d10c19e60b5cbc4cf' # electron-3.patch
    'ab9eed3d4c8bfefea256953428379ab1e636b9c7d4c4af30ddc3f485330183c2' # fix-atom-sh.patch
    'c8a931f36af3722c57c4d1b70c1e58aa1a18372e8e26c28a4e01253e05295205' # fix-license-path.patch
    'bacc817e57980e483485d8ed12b70aae58902202d299828ce7bbc4df0c71a790' # fix-middle-click.patch
    '1f48c84f30ffefaef7235d8231af7357b801d66de9f09921d0ee0dd5849595ca' # fix-restart.patch
    'f1080f8a5fe0fb667989bf4bab698e97014ef43a139c3aa9eb677fe526f1aa5e' # symbols-view-use-system-ctags.patch
    '32e27c6245237a794b15eaf7dbfb81196455865af8ed9157aca763ed21a2fef3' # use-system-apm.patch
    'e78a91f0d042cbea47bbe9992913a38ebaaf943fcfca9ec71a60edf6ac1a207b' # use-system-electron.patch
)
pkgver() {
    cd ${pkgname}
    # Remove 'v' prefix on tags; prefix revision with 'r'; replace all '-' with '.'
    git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
    cd ${pkgname}

    # When a piece of software requires this many downstream patches...
    # I think its time to move on to a different editor...
    patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
    patch -Np1 -i "${srcdir}"/use-system-electron.patch
    patch -Np1 -i "${srcdir}"/use-system-apm.patch
    patch -Np1 -i "${srcdir}"/fix-license-path.patch
    patch -Np1 -i "${srcdir}"/fix-restart.patch
    patch -Np1 -i "${srcdir}"/electron-3.patch
}

build() {
    cd ${pkgname}

    # Fix for Electron 3
    npm install --package-lock-only @atom/nsfw@1.0.20 node-abi

    ATOM_RESOURCE_PATH="${PWD}" npm_config_target=$(tail -c +2 /usr/lib/electron/version) apm install

    # Use system ctags
    cd "${srcdir}/${pkgname}/node_modules/symbols-view"
    patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
    rm -r vendor

    # Use system git
    cd "${srcdir}/${pkgname}/node_modules/dugite"
    patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
    rm -rf git

    # Fix middle click
    # https://bugs.archlinux.org/task/61047
    cd "${srcdir}/${pkgname}/node_modules/tabs"
    patch -Np1 -i "${srcdir}"/fix-middle-click.patch

    cd "${srcdir}/${pkgname}/script"
    npm install
    ./build
}

package() {
    cd ${pkgname}

    install -d -m 755 "${pkgdir}"/usr/lib
    cp -r out/app "${pkgdir}"/usr/lib/atom
    install -m 644 out/startup.js "${pkgdir}"/usr/lib/atom
    install -m 755 "${srcdir}/atom.js" "${pkgdir}"/usr/lib/atom/atom
    install -d -m 755 "${pkgdir}/usr/share/applications"
    install -m 644 "${srcdir}/atom.desktop" "${pkgdir}/usr/share/applications/atom.desktop"

    for size in 16 24 32 48 64 128 256 512 1024; do
      install -D -m 644 resources/app-icons/stable/png/${size}.png \
              "${pkgdir}"/usr/share/icons/hicolor/${size}x${size}/apps/atom.png
    done
    ln -sf ../../../share/icons/hicolor/1024x1024/apps/atom.png \
        "${pkgdir}"/usr/lib/atom/resources/atom.png

    install -D -m 755 atom.sh "${pkgdir}/usr/bin/atom"

    install -d -m 755 "${pkgdir}/usr/share/licenses/${pkgname}"
    node -e "require('./script/lib/get-license-text')().then((licenseText) => require('fs').writeFileSync('${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md', licenseText))"

    # Remove useless stuff
    find "${pkgdir}"/usr/lib/atom/node_modules \
        -name "*.a" -exec rm '{}' \; \
        -or -name "*.bat" -exec rm '{}' \; \
        -or -name "*.node" -exec chmod a-x '{}' \; \
        -or -name "benchmark" -prune -exec rm -r '{}' \; \
        -or -name "doc" -prune -exec rm -r '{}' \; \
        -or -name "html" -prune -exec rm -r '{}' \; \
        -or -name "man" -prune -exec rm -r '{}' \; \
        -or -name "scripts" -prune -exec rm -r '{}' \; \
        -or -path "*/less/gradle" -prune -exec rm -r '{}' \; \
        -or -path "*/task-lists/src" -prune -exec rm -r '{}' \;
}