xiterm

simple vte terminal emulator
git clone https://git.ce9e.org/xiterm.git

commit
ef5054a6760c5bfd90f7c7236c1486cf8f312bc9
parent
acffb5d641220f7b6ab5e8e343c5a0430b74336a
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-12-18 10:57
fix some lintian issues

Diffstat

M Makefile 6 +++---
M PKGBUILD 2 +-

2 files changed, 4 insertions, 4 deletions


diff --git a/Makefile b/Makefile

@@ -1,6 +1,6 @@
    1     1 PREFIX = /usr
    2    -1 CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os `pkg-config --cflags gtk+-3.0 vte-2.91`
    3    -1 LDFLAGS = `pkg-config --libs gtk+-3.0 vte-2.91`
   -1     2 CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -O2 `pkg-config --cflags gtk+-3.0 vte-2.91`
   -1     3 LDFLAGS = -s `pkg-config --libs gtk+-3.0 vte-2.91`
    4     4 
    5     5 all: xiterm
    6     6 
@@ -12,7 +12,7 @@ clean:
   12    12 
   13    13 install: all
   14    14 	install -D -m 755 xiterm ${DESTDIR}${PREFIX}/bin/xiterm
   15    -1 	install -D xiterm.desktop ${DESTDIR}${PREFIX}/share/applications/xiterm.desktop
   -1    15 	install -D -m 644 xiterm.desktop ${DESTDIR}${PREFIX}/share/applications/xiterm.desktop
   16    16 
   17    17 uninstall:
   18    18 	rm -f ${DESTDIR}${PREFIX}/bin/xiterm

diff --git a/PKGBUILD b/PKGBUILD

@@ -3,7 +3,7 @@ pkgver='0.0'
    3     3 pkgdesc='simple vte terminal emulator'
    4     4 arch=('amd64')
    5     5 license='MIT'
    6    -1 depends=('libgtk-3-0' 'libvte-2.91-0')
   -1     6 depends=('libgtk-3-0' 'libvte-2.91-0' 'libc6')
    7     7 provides='x-terminal-emulator'
    8     8 
    9     9 package() {