blob: 4cf4df5069a89c213b0e35bcf33190baf89221a1 (
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
|
# Maintainer: mooow <9mvnyapkt@mozmail.com>
# Thanks: Darren Wu <$(base64 --decode <<<'ZGFycmVuMTk5NzA4MTBAZ21haWwuY29tCg==')>
# Thanks: Jared Casper <jaredcasper@gmail.com>
# Thanks: Kyle Keen <keenerd@gmail.com>
# Thanks: Markus Koch <CClassicVideos@aol.com>
# Thanks: Thomas Dziedzic < gostrc at gmail >
pkgname=gtkwave-gtk3-tcl
pkgver=3.3.121
pkgrel=1
pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files (GTK+ 3 version, with Tcl/Tk support)'
arch=('x86_64')
url='http://gtkwave.sourceforge.net'
license=('GPL' 'MIT')
depends=('bzip2' 'xz' 'gtk3' 'dconf' # Original gtkwave dependencies
'tcl' 'tk'
)
makedepends=('gperf')
conflicts=(gtkwave)
provides=(gtkwave)
install='gtkwave.install'
source=("https://downloads.sourceforge.net/project/gtkwave/gtkwave-gtk3-$pkgver/gtkwave-gtk3-$pkgver.tar.gz")
sha256sums=('54aa45788d6d52afb659c3aef335aafde0ef2c8990a7770f8eaa64e57f227346')
build() {
cd gtkwave-gtk3-$pkgver
CFLAGS="${CFLAGS} -Wno-error=incompatible-pointer-types"
./configure \
--prefix=/usr \
--enable-tcl \
--disable-mime-update \
--with-gsettings \
--enable-gtk3
make
}
package() {
cd gtkwave-gtk3-$pkgver
make DESTDIR="${pkgdir}" install
install -D -m644 LICENSE.TXT \
"$pkgdir/usr/share/licenses/gtkwave/LICENSE.TXT"
}
|