summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b68bfc55f75a9ff3f7d364bf72de5e456a7099dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Maintainer: trashstar <trash@ps3zone.org>
# Contributor: Hugo Osvaldo Barrera <hugo@barrera.io>
# Contributor: Tony Sokhon <tonyskn@gmail.com>
# Contributor: Ebubekir KARUL <ebubekirkarul@yandex.com>
# Contributor: Gaurish Sharma <contact@gaurishsharma.com>
# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
# Contributor: Katrina L. Halliwell <rambaldi.kat.47@gmail.com>
# Contributor: Eugenio Ferreira <eugfcl@gmail.com>

pkgname=lighttable
pkgver=0.8.1
pkgrel=2
pkgdesc="New interactive IDE that lets you modify running programs and embed anything from websites to games."
url="http://www.lighttable.com/"
license=('MIT')
depends=("nss" "alsa-lib" "desktop-file-utils" "gconf" "libudev0-shim" "gtk2")
options=(!strip !emptydirs)
arch=('x86_64')
install=$pkgname.install

source=(lighttable
        $pkgname-${pkgver//_/-}.tar.gz::https://github.com/LightTable/LightTable/releases/download/${pkgver//_/-}/lighttable-${pkgver//_/-}-linux.tar.gz
        lighttable.desktop
        lighttable.png
        LICENSE)
md5sums=('cad9cb77799f087aef08f0436b853412'
         '7e4efcce58f2f4a44edb5bde6f5a91db'
         '04a62702b59810a36bca7623bf9e932c'
         'f8c055be2f047ff4aaffdd028f62f027'
         '8870b5e12f58e6a19a53f4fa938755e8')
PKGEXT=".pkg.tar"

package() {
  install -Dm 755 "$srcdir/lighttable" "$pkgdir/usr/bin/lighttable"

  install -dm755 "$pkgdir/usr/share/licenses/lighttable"
  install -Dm 644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/lighttable/LICENSE"

  _destdir="$pkgdir/opt/LightTable"

  install -dm755 $_destdir
  mv $srcdir/lighttable-${pkgver//_/-}-linux/* $_destdir

  install -Dm 644 "$srcdir/lighttable.desktop" "$pkgdir/usr/share/applications/lighttable.desktop"
  install -Dm 644 "$srcdir/lighttable.png" "$pkgdir/usr/share/pixmaps/lighttable.png"
}