Last active
April 30, 2018 19:02
-
-
Save aichingm/ed35ba3b136be4424b1ac947207dbca3 to your computer and use it in GitHub Desktop.
A PKGBUILD for the gtk3 version of guake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Mario Aichinger <aichingm@gmail.com> | |
pkgname=guake-gtk3-git | |
pkgver=3.2.0.29.gd6a6ee1 | |
pkgrel=1 | |
pkgdesc="Top-down terminal for Gnome using gtk3 and vte3" | |
arch=('i686' 'x86_64' 'armv7h') | |
url="https://github.com/Guake/guake" | |
license=('GPL') | |
depends=('python' 'gtk3' 'libkeybinder3' 'vte-common' 'vte3' 'python-pbr' 'python-gobject' 'gettext' 'gobject-introspection-runtime') | |
makedepends=('git' 'python' 'python-pip' 'make') | |
conflicts=('guake') | |
provides=('guake') | |
source=("git://github.com/Guake/guake.git") | |
sha512sums=('SKIP') | |
prepare(){ | |
cd "${srcdir}/guake" | |
} | |
pkgver() { | |
cd "${srcdir}/guake" | |
git describe --tags | sed 's,-,.,g' | |
} | |
build(){ | |
cd "${srcdir}/guake" | |
make build | |
} | |
package() { | |
cd "${srcdir}/guake" | |
make install DESTDIR="$pkgdir/" prefix="/usr/" COMPILE_SCHEMA=0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, I'll add it to AUR