2015-07-07 23:14:02 +02:00
|
|
|
# Maintainer: Sander Boom <sanderboom@gmail.com>
|
2015-07-07 23:11:13 +02:00
|
|
|
# Contributor: realitygaps <realitygaps at yahoo dot com>
|
|
|
|
|
|
|
|
pkgname=sublime-text-dev
|
2018-05-08 09:09:52 +02:00
|
|
|
pkgver=3.3170
|
2016-02-09 10:08:09 +01:00
|
|
|
pkgrel=1
|
2015-07-07 23:11:13 +02:00
|
|
|
pkgdesc="Sophisticated text editor for code, html and prose - dev build"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://www.sublimetext.com/3"
|
|
|
|
license=('custom')
|
|
|
|
depends=('libpng' 'gtk2')
|
|
|
|
optdepends=('gksu: sudo-save support')
|
|
|
|
conflicts=('sublime-text-nightly')
|
|
|
|
provides=('sublime-text-nightly')
|
|
|
|
install=${pkgname}.install
|
|
|
|
|
|
|
|
source=('sublime_text_3.desktop')
|
2016-02-09 10:08:09 +01:00
|
|
|
source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x32.tar.bz2")
|
|
|
|
source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2")
|
2015-07-07 23:11:13 +02:00
|
|
|
|
2015-09-25 17:49:24 +02:00
|
|
|
sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866')
|
2018-05-08 09:09:52 +02:00
|
|
|
sha256sums_i686=('efbb5095995f9acc7df620325d52070fb4fd04a086c66082527b5f8bab489412')
|
|
|
|
sha256sums_x86_64=('fdcfc110626e89c5c40a6c38b700a40f8d608c2cdd1cd4fef63263004096dfea')
|
2015-07-07 23:11:13 +02:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}"
|
|
|
|
|
|
|
|
install -dm755 "${pkgdir}/opt"
|
|
|
|
cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3"
|
|
|
|
|
|
|
|
for res in 128x128 16x16 256x256 32x32 48x48; do
|
|
|
|
install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps"
|
|
|
|
ln -s "/opt/sublime_text_3/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_3.desktop" "${pkgdir}/usr/share/applications/sublime_text_3.desktop"
|
|
|
|
|
|
|
|
install -dm755 "${pkgdir}/usr/bin"
|
|
|
|
ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl3"
|
|
|
|
}
|