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
|
2024-11-27 23:40:36 +01:00
|
|
|
pkgver=4.4184
|
2024-05-07 18:59:31 +02: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
|
|
|
|
|
2024-04-08 22:43:02 +02:00
|
|
|
source=("${pkgname}.sh")
|
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
|
|
|
|
2024-04-08 22:43:02 +02:00
|
|
|
sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9')
|
2024-11-27 23:40:36 +01:00
|
|
|
sha512sums_x86_64=('d10977ee222f6fd5abba4d9a7ce6dec64450a0a200222ffcadc11c94be0b9238a6f2cad41854e595e4f15e9f5b4b938f8e2bf952b2fdfc68e08f191955539521')
|
|
|
|
sha512sums_aarch64=('6de63905eb12366c730de09571bd50954b044011bfd7127e251fe9bfa9e0a39a71f2159689985e114370ab3455ebfcb6adef9aff0eac712b60f61e758653a299')
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2024-04-08 22:43:02 +02:00
|
|
|
prepare() {
|
|
|
|
sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh"
|
|
|
|
sed -i -e 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop'
|
|
|
|
sed -i -e '\#^StartupNotify=#a StartupWMClass=subl' 'sublime_text/sublime_text.desktop'
|
|
|
|
}
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2024-04-08 22:43:02 +02:00
|
|
|
package() {
|
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
|
|
|
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"
|
2024-04-08 22:43:02 +02:00
|
|
|
install -Dm755 "${pkgname}.sh" "${pkgdir}/usr/bin/subl"
|
2015-07-07 23:11:13 +02:00
|
|
|
}
|