Initial commit with build 4107
This commit is contained in:
commit
f27a985c01
4 changed files with 95 additions and 0 deletions
23
.SRCINFO
Normal file
23
.SRCINFO
Normal file
|
@ -0,0 +1,23 @@
|
|||
pkgbase = sublime-text-4
|
||||
pkgdesc = Sophisticated text editor for code, html and prose - stable build
|
||||
pkgver = 4.4107
|
||||
pkgrel = 1
|
||||
url = http://www.sublimetext.com/
|
||||
install = sublime-text-4.install
|
||||
arch = x86_64
|
||||
arch = aarch64
|
||||
license = custom
|
||||
depends = libpng
|
||||
depends = gtk3
|
||||
optdepends = gksu: sudo-save support
|
||||
provides = sublime-text
|
||||
conflicts = sublime-text
|
||||
source = sublime_text.desktop
|
||||
sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf
|
||||
source_x86_64 = https://download.sublimetext.com/sublime_text_build_4107_x64.tar.xz
|
||||
sha256sums_x86_64 = c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915
|
||||
source_aarch64 = https://download.sublimetext.com/sublime_text_build_4107_arm64.tar.xz
|
||||
sha256sums_aarch64 = e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03
|
||||
|
||||
pkgname = sublime-text-4
|
||||
|
40
PKGBUILD
Normal file
40
PKGBUILD
Normal file
|
@ -0,0 +1,40 @@
|
|||
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||
|
||||
pkgname=sublime-text-4
|
||||
pkgver=4.4107
|
||||
pkgrel=1
|
||||
pkgdesc="Sophisticated text editor for code, html and prose - stable build"
|
||||
arch=('x86_64' 'aarch64')
|
||||
url="http://www.sublimetext.com/"
|
||||
license=('custom')
|
||||
depends=('libpng' 'gtk3')
|
||||
optdepends=('gksu: sudo-save support')
|
||||
conflicts=('sublime-text')
|
||||
provides=('sublime-text')
|
||||
install=${pkgname}.install
|
||||
|
||||
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")
|
||||
|
||||
sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf')
|
||||
sha256sums_x86_64=('c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915')
|
||||
sha256sums_aarch64=('e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03')
|
||||
|
||||
package() {
|
||||
cd "${srcdir}"
|
||||
|
||||
install -dm755 "${pkgdir}/opt"
|
||||
cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text"
|
||||
|
||||
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
|
||||
|
||||
install -dm755 "${pkgdir}/usr/share/applications"
|
||||
install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop"
|
||||
|
||||
install -dm755 "${pkgdir}/usr/bin"
|
||||
ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl"
|
||||
}
|
8
sublime-text-4.install
Normal file
8
sublime-text-4.install
Normal file
|
@ -0,0 +1,8 @@
|
|||
post_install() {
|
||||
# Update icon cache.
|
||||
gtk-update-icon-cache -f '/usr/share/icons/hicolor' > /dev/null 2>&1
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
24
sublime_text.desktop
Normal file
24
sublime_text.desktop
Normal file
|
@ -0,0 +1,24 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Sublime Text
|
||||
GenericName=Text Editor
|
||||
Comment=Sophisticated text editor for code, markup and prose
|
||||
Exec=subl %F
|
||||
Terminal=false
|
||||
MimeType=text/plain;
|
||||
Icon=sublime-text
|
||||
Categories=TextEditor;Development;
|
||||
StartupNotify=true
|
||||
StartupWMClass=subl
|
||||
Actions=Window;Document;
|
||||
|
||||
[Desktop Action Window]
|
||||
Name=New Window
|
||||
Exec=subl -n
|
||||
OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Document]
|
||||
Name=New File
|
||||
Exec=subl --command new_file
|
||||
OnlyShowIn=Unity;
|
Loading…
Reference in a new issue