diff options
author | Miguel Angel Useche Castro | 2019-11-16 11:51:56 -0500 |
---|---|---|
committer | Miguel Angel Useche Castro | 2019-11-16 11:51:56 -0500 |
commit | fb2d534129c775d2ef6eacb167323e6aad7d9844 (patch) | |
tree | cdabb0a0de3cb59e9916da14c8402cf5f6e5efa8 | |
parent | 94339dd598a13d05c708b71846e46804e39c3d06 (diff) | |
download | aur-fb2d534129c775d2ef6eacb167323e6aad7d9844.tar.gz |
simplifying PKGBUILD and updating package
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | PKGBUILD | 17 |
2 files changed, 5 insertions, 15 deletions
@@ -1,6 +1,6 @@ pkgbase = guake-git pkgdesc = Top-down terminal for Gnome using gtk3 and vte3 - pkgver = 3.4.0.48.g7c91cfe + pkgver = 3.6.3.37.g9d3ef38 pkgrel = 1 url = https://github.com/Guake/guake arch = i686 @@ -23,6 +23,7 @@ pkgbase = guake-git depends = gettext depends = gobject-introspection-runtime depends = libwnck3 + depends = libnotify provides = guake conflicts = guake conflicts = guake-gtk2-git @@ -5,14 +5,14 @@ # Contributor: Florian Reimair <office /at/ florianreimair.at> pkgname=guake-git -pkgver=3.4.0.48.g7c91cfe +pkgver=3.6.3.37.g9d3ef38 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=('vte3' 'gtk3' 'python-pbr' 'python-dbus' 'python-xdg' 'libutempter' 'libkeybinder3' 'python-cairo' 'vte-common' 'python-gobject' 'gettext' -'gobject-introspection-runtime' 'libwnck3') +'gobject-introspection-runtime' 'libwnck3' 'libnotify') makedepends=('git' 'python-pip' 'make') conflicts=('guake' 'guake-gtk2-git') provides=('guake') @@ -24,18 +24,7 @@ pkgver() { git describe --tags | sed 's,-,.,g' } -build(){ - cd "${srcdir}/${pkgname%-git}" - make -} - -package() { +package(){ cd "${srcdir}/${pkgname%-git}" make install DESTDIR="$pkgdir" PREFIX="/usr" COMPILE_SCHEMA=1 - cd "${pkgdir}" - mv "usr/local/lib" "usr/" } - -#post_install() { -# glib-compile-schemas --strict /usr/local/share/glib-2.0/schemas -#} |