# Maintainer: George Rawlinson # Contributor: Andre Miranda # Contributor: Tom Bu # Contributor: John Reese # Contributor: Jordan J Klassen # Contributor: Danny Arnold pkgname=atom-editor-bin pkgver=1.35.1 pkgrel=1 pkgdesc="Hackable text editor built on Electron (official precompiled binary)" arch=('x86_64') url="https://github.com/atom/atom" license=('MIT') provides=('atom' 'apm') options=(!strip !emptydirs) depends=('git' 'gconf' 'gtk2' 'libnotify' 'libxtst' 'nss' 'python2' 'xdg-utils' 'desktop-file-utils' 'alsa-lib' 'libgnome-keyring' 'libxss') optdepends=('gvfs') conflicts=('atom' 'atom-editor' 'atom-editor-git' 'atom-editor-git-tagged' 'apm' 'atom-notracking') install=$pkgname.install source=("atom-amd64-v${pkgver}.deb::https://atom-installer.github.com/v${pkgver}/atom-amd64.deb" "LICENSE::https://raw.githubusercontent.com/atom/atom/v${pkgver}/LICENSE.md" atom-editor-bin.install atom-python.patch startupwmclass.patch) sha512sums=('f8ba6935acd2f010a2ddccdb8b8a86876eb13c8b7386b76b8012aed6efd0a8366ebbf848475f5eefb9688ef89ef67d46e096d8e771529de1a49bb475b0ce7871' '4946629b14a57a57a3849fc3ff7f43779b55e1883383949212ccb6cb7bb4867edffb927f9d85cb2717b932c4f5162140d421e19df031edc7ea384ee93d93b2a4' 'e30f7e4812898b80c079ba419e0cb37522c2e154ef7fdd6dda3da06dcbcaadc42016dd3d3b8caf206b842a2b9e3b954e537626d72337c56f05365a733627ce6c' '2d2752f0625700d806821a8792df9a41a069e880a66e5906882aec71bbeef73f61f0a5e5583d9ed2d9655d4ed7ce82a5908b811f7953325d46d573577c764484' '374b9f8fa1e0d2cab77d4cea9c718fb889bb6db3dbf9762ad5cbb88f3a0936023f36641012fc90e029832a772b8d4fdfe6b72f304e3950c02a7c9bf4d6d3d4ec') prepare() { # Extract data bsdtar xf data.tar.xz # Apply patches patch -sp1 < "${srcdir}"/atom-python.patch patch -sp1 < "${srcdir}"/startupwmclass.patch # Modify package to use python2 instead of python3 sed -i 's|env PYTHON=python2 GTK_IM_MODULE= QT_IM_MODULE= XMODIFIERS= /usr/share/atom/atom|/usr/bin/atom|' usr/share/applications/atom.desktop sed -i 's|python|python2|' usr/share/atom/resources/app/apm/bin/python-interceptor.sh } package() { # Recursively remove group's write permission before moving to package directory chmod -R g-w usr mv usr "${pkgdir}" # Add LICENSE install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE }