summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8d218bf98b45a68882578aac1e907d4d571fe645 (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
# Maintainer: bobi

pkgname=germinal
pkgver=12
pkgrel=2
pkgdesc="Minimalist terminal emulator based on vte and tmux"

license=('GPL3')
url="https://github.com/Keruspe/Germinal"
source=("http://www.imagination-land.org/files/$pkgname/$pkgname-$pkgver.tar.xz" "tmuxsession.patch")

makedepends=('intltool')

depends=('glib2' 'vte3' 'pango' 'tmux')

arch=('i686' 'x86_64')
md5sums=('e75233bb63d21e5f10314b4ef2f81366'
         '50ebbeb73945bb2bf26ed713e33da733')

build () {
	cp tmuxsession.patch "$srcdir/$pkgname-$pkgver"
    cd "$srcdir/$pkgname-$pkgver"
	patch -p0 < tmuxsession.patch

    ./configure --sysconfdir=/etc       \
		--libexecdir=/usr/lib
    make
}

package () {
    cd "$srcdir/$pkgname-$pkgver"
    make DESTDIR="$pkgdir" install
}
# expandtab:tabstop=4:shiftwidth=4