blob: 5186bdd8ce977c4632158eb9c4c442f4fc7781b5 (
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
|
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=tilda
pkgver=1.5.1
pkgrel=0
pkgdesc="A Gtk based drop down terminal for Linux and Unix"
url="https://github.com/lanoxx/tilda"
arch="all"
license="GPL"
depends="procps"
makedepends="automake autoconf libtool
confuse-dev vte3-dev libx11-dev libxml2-utils
pcre2-dev"
subpackages="$pkgname-lang"
source="https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$pkgname-$pkgname-$pkgver
prepare() {
default_prepare
cd "$builddir"
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd "$builddir"
./configure \
--prefix=/usr \
--disable-maintainer-mode \
--enable-lto \
--enable-vte-2.91 \
--disable-rpath
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="${pkgdir}" install
}
sha512sums="58bba956adcc7adef11efc0c968bda2933543979759b1d477a1c040cf29cd5ef4382f13f220cde34162f23eedb3c987b81c139a3bae9d34106d18c9be08c9d90 tilda-1.5.1.tar.gz"
|