2021-05-21 13:28:04 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
|
|
|
# Contributor: Sander Boom <sanderboom@gmail.com>
|
2015-07-07 23:11:13 +02:00
|
|
|
# Contributor: realitygaps <realitygaps at yahoo dot com>
|
|
|
|
|
|
|
|
pkgname=sublime-text-dev
|
2022-10-17 11:17:09 +02:00
|
|
|
pkgver=4.4138
|
2019-04-10 22:04:39 +02:00
|
|
|
pkgrel=1
|
2015-07-07 23:11:13 +02:00
|
|
|
pkgdesc="Sophisticated text editor for code, html and prose - dev build"
|
2021-05-21 13:28:04 +02:00
|
|
|
arch=('x86_64' 'aarch64')
|
2021-06-22 18:07:49 +02:00
|
|
|
url="https://www.sublimetext.com/dev"
|
2015-07-07 23:11:13 +02:00
|
|
|
license=('custom')
|
2019-03-23 21:34:22 +01:00
|
|
|
depends=('libpng' 'gtk3')
|
2015-07-07 23:11:13 +02:00
|
|
|
optdepends=('gksu: sudo-save support')
|
2021-05-21 13:28:04 +02:00
|
|
|
conflicts=('sublime-text')
|
|
|
|
provides=('sublime-text')
|
2015-07-07 23:11:13 +02:00
|
|
|
install=${pkgname}.install
|
|
|
|
|
2021-05-21 13:28:04 +02:00
|
|
|
source=('sublime_text.desktop')
|
|
|
|
source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz")
|
|
|
|
source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz")
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2021-05-21 13:28:04 +02:00
|
|
|
sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf')
|
2022-10-17 11:17:09 +02:00
|
|
|
sha256sums_x86_64=('0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7')
|
|
|
|
sha256sums_aarch64=('def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581')
|
2015-07-07 23:11:13 +02:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}"
|
|
|
|
|
|
|
|
install -dm755 "${pkgdir}/opt"
|
2021-05-21 13:28:04 +02:00
|
|
|
cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text"
|
2015-07-07 23:11:13 +02:00
|
|
|
|
|
|
|
for res in 128x128 16x16 256x256 32x32 48x48; do
|
|
|
|
install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps"
|
2021-05-21 13:28:04 +02:00
|
|
|
ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png"
|
2015-07-07 23:11:13 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
install -dm755 "${pkgdir}/usr/share/applications"
|
2021-05-21 13:28:04 +02:00
|
|
|
install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop"
|
2015-07-07 23:11:13 +02:00
|
|
|
|
|
|
|
install -dm755 "${pkgdir}/usr/bin"
|
2021-05-21 13:28:04 +02:00
|
|
|
ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl"
|
2015-07-07 23:11:13 +02:00
|
|
|
}
|