summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f7c4f9262d3d2170c5a31fe51d40a6dec78cc201 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Maintainer: Geballin - Guillaume Ballin <macniaque at free dot fr>
pkgname=insight-git
pkgver=bundled.tcl.r467.g3be6b22
pkgrel=1
pkgdesc="Insight is a graphical user interface to GDB, the GNU Debugger written in Tcl/Tk."
url="https://sourceware.org/git/?p=insight.git"
arch=('x86_64' 'i686')
license=('GPL3')
depends=('tcl' 'tk' 'gdb' 'tk-itk' 'tcl-combobox' 'iwidgets')
optdepends=()
makedepends=(git)
conflicts=()
replaces=()
backup=()
options=('!buildflags')
install=
source=(git+https://sourceware.org/git/insight.git
	build.sh
	gdb_acinclude.m4.patch
	libgui_acinclude.m4.patch
	configure.ac.patch
	binutils-gdb_config_override.m4.patch)

md5sums=('SKIP'
	'4817d3935ad0815c3a76cbbc11cd0b1c'
	'a4a50d98e6cfdc38bc8187b34ce451fa'
	'67588c209da7505a07c44532f6e973ae'
	'a657612d67bc37b53b874b07aaf68873'
	'3f329bccc0724dd689143c45c583f876')

pkgver() {
  cd insight
  git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
  git -C insight submodule update --init --recursive
}

build() {
  cd insight
  patch -u libgui/acinclude.m4 -i ../libgui_acinclude.m4.patch
  patch -u binutils-gdb/gdb/acinclude.m4 -i ../gdb_acinclude.m4.patch
  patch -u binutils-gdb/config/override.m4 -i ../binutils-gdb_config_override.m4.patch
  patch -u configure.ac -i ../configure.ac.patch
  aclocal
  autoconf
  sh ../build.sh
  make
  }

package() {
  cd insight
  make DESTDIR="${pkgdir}" install-host-nogcc
  cd ${pkgdir}/usr
  rm bin/g*
  rm -rf include
  rm -rf lib
  rm lib64/lib*
  mv lib64 lib
  rm -rf share/info
  rm -rf share/locale
  rm -rf share/man
  }