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-12-14 08:08:55 +01:00
|
|
|
pkgver=4.4144
|
2022-12-12 12:02:48 +01:00
|
|
|
pkgrel=4
|
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
|
|
|
|
|
2021-05-21 13:28:04 +02:00
|
|
|
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
|
|
|
|
2022-12-14 08:08:55 +01:00
|
|
|
sha256sums_x86_64=('d7cceb1e18c9d138045895eeef4044da6786cdf5422482d18fa33dd82cff85a7')
|
|
|
|
sha256sums_aarch64=('e496df0677fde467d277b7a76543fd4cd8572efd224b817737b2c3c367998368')
|
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
|
|
|
}
|