aboutsummaryrefslogtreecommitdiffstats
path: root/testing/guake/APKBUILD
blob: 8b09d8e365683c671254748b174646e651bdae21 (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
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=guake
pkgver=0.8.9
pkgrel=0
pkgdesc="Drop-down terminal for GNOME"
url="http://guake-project.org"
arch="all"
license="GPL"
makedepends="python3-dev gtk+2.0-dev py-gtk-dev gconf-dev py2-vte
	autoconf automake libtool m4 gnome-common intltool"
subpackages="$pkgname-doc $pkgname-lang"
source="$pkgname-$pkgver.tar.gz::https://github.com/Guake/$pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

check() {
	cd "$builddir"
	make check
}

prepare() {
	cd "$builddir"
	NOCONFIGURE=1 ./autogen.sh
	default_prepare
}

build() {
	cd "$builddir"
	./configure \
		--prefix=/usr \
		--disable-nls \
		--disable-static
	make
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

sha512sums="fecf481fe5940e64b51329e0fdfacfc26083755bc4fbc8358b92fd5c78c5d2ce0bdc65a2af2e9b0679c04d61c4be6cd202179a0c45965c4a71ee82246f53c02c  guake-0.8.9.tar.gz"