blob: 50f5847462b3ecf2f078839374010a4af31739ae (
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
|
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=tilda
pkgver=1.3.3
pkgrel=2
pkgdesc="A Gtk based drop down terminal for Linux and Unix"
url="https://github.com/lanoxx/tilda"
arch="all"
license="GPL"
makedepends="automake autoconf libtool
confuse-dev vte3-dev libx11-dev libxml2-utils"
subpackages="$pkgname-lang"
source="https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$pkgname-$pkgname-$pkgver
prepare() {
cd "$builddir"
NOCONFIGURE=1 ./autogen.sh
default_prepare
}
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="7327159201cd1a17a3633bd8d399283564487d3bf36ff16d31d4efd3839ddf79661d3160fe67c85db2f60bc5283ac4ff2d8ea0738e8ea7dc3ce538cfcb68f951 tilda-1.3.3.tar.gz"
|