blob: 853391e7a8c9b6b4fd91c631c00ffce7c424957a (
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
|
# Maintainer: Thomas Weißschuh <thomas_weissschuh || lavabit || com>
# Contributor: Zveroy <zy at aafg dot ws>
# Contributor: Jonas Haag <jonas at lophus dot org>
# Contributor: Pardi Tommaso <homer.j.simson.bis at gmail dot com>
pkgname=evilvte
pkgver=0.5.1
pkgrel=1
pkgdesc='VTE based, highly customizable terminal emulator'
arch=('i686' 'x86_64')
provides=('evilvte')
url='http://www.calno.com/evilvte/'
license=('GPL2')
depends=('vte3' 'hicolor-icon-theme')
makedepends=('pkg-config')
source=("http://www.calno.com/evilvte/evilvte-${pkgver}.tar.xz")
install=evilvte.install
build(){
cd ${srcdir}/evilvte-${pkgver}
if [ -e ${startdir}/config.h ]
then
echo config.h found.
else
cp ./src/config.h ${startdir}/
echo Please edit ${startdir}/config.h to customize your options.
if [ -n "${EDITOR}" ] ; then
"${EDITOR}" "${startdir}/config.h"
fi
fi
cp -f ${startdir}/config.h ./src/
./configure --prefix=/usr --with-gtk=3.0
make
}
package(){
cd ${srcdir}/evilvte-${pkgver}
make DESTDIR=${pkgdir} install
}
sha1sums=('3ceef90d835b291b7ec994746231da7d047ed1fb')
|