blob: 70d398e41e414f8fbafeb7b79e8546ed95597016 (
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
|
# Maintainer: bobi
pkgname=germinal
pkgver=25
pkgrel=1
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")
makedepends=('intltool' 'appstream-glib')
depends=('glib2' 'vte3' 'pango' 'tmux' 'pcre2')
install=$pkgname.install
arch=('i686' 'x86_64')
md5sums=('f9369e6b4485c003f4067a7d0ba30241')
build () {
cd "$srcdir/$pkgname-$pkgver"
./configure --sysconfdir=/etc \
--libexecdir=/usr/lib
make
}
package () {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
# expandtab:tabstop=4:shiftwidth=4
|