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
|
2023-05-13 23:06:23 +02:00
|
|
|
pkgver=4.4150
|
2022-12-14 10:08:07 +01:00
|
|
|
pkgrel=1
|
2022-11-15 17:24:05 +01:00
|
|
|
pkgdesc='Sophisticated text editor for code, html and prose - dev build'
|
2021-05-21 13:28:04 +02:00
|
|
|
arch=('x86_64' 'aarch64')
|
2022-11-15 17:24:05 +01: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')
|
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
|
|
|
|
|
2023-08-07 17:43:41 +02:00
|
|
|
source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz")
|
|
|
|
source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz")
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2023-08-07 17:43:41 +02:00
|
|
|
sha512sums_x86_64=('0e78bdc35935e751512b1527081882a5438de49cd7f6ecdb6304ff13043cf5caf885beecb6588721064660bd822a6bcb4bd138f272773e728fd44b20150b2f84')
|
|
|
|
sha512sums_aarch64=('b6aefc8704f758553614821aab55677a88afcb8a18278e3c9e3edf9c9a726d412afc2d795db3c60688d28b2853f7d8cbbd53693e5b0ced785619d5436310cf20')
|
2015-07-07 23:11:13 +02:00
|
|
|
|
|
|
|
package() {
|
2022-11-15 17:29:49 +01:00
|
|
|
cd "${srcdir}"
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2022-11-15 17:29:49 +01:00
|
|
|
install -dm755 "${pkgdir}/opt"
|
|
|
|
cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text"
|
2022-12-10 09:58:54 +01:00
|
|
|
rm -f "${pkgdir}/opt/sublime_text/sublime_text.desktop"
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2022-11-15 17:29:49 +01:00
|
|
|
for res in 128x128 16x16 256x256 32x32 48x48; do
|
|
|
|
install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps"
|
|
|
|
ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png"
|
|
|
|
done
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2022-11-15 17:29:49 +01:00
|
|
|
sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop'
|
2022-12-12 12:02:48 +01:00
|
|
|
sed -i '\#^StartupNotify=#a StartupWMClass=subl' 'sublime_text/sublime_text.desktop'
|
2022-11-15 17:24:05 +01:00
|
|
|
|
2022-11-15 17:29:49 +01:00
|
|
|
install -dm755 "${pkgdir}/usr/share/applications"
|
|
|
|
install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop"
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2022-11-15 17:29:49 +01:00
|
|
|
install -dm755 "${pkgdir}/usr/bin"
|
|
|
|
ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl"
|
2015-07-07 23:11:13 +02:00
|
|
|
}
|