mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-27 16:42:30 +02:00
42 lines
987 B
Plaintext
42 lines
987 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=guake
|
|
pkgver=0.8.10
|
|
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="6a5986b95a3a0b7029276f2b34780dc3d58d7afa186f31a15f4adc3d8368b1dae8ed6100a2baf9683c9d5aa416daf32ef1c6f274c852fa0bd4a17d0c9f50ba98 guake-0.8.10.tar.gz"
|