Date: Monday, April 18, 2016 @ 14:54:04 Author: spupykin Revision: 171346
upgpkg: sysprof 3.20.0-2 upd Modified: sysprof/trunk/PKGBUILD sysprof/trunk/sysprof.install -----------------+ PKGBUILD | 15 ++++++++++----- sysprof.install | 5 +++-- 2 files changed, 13 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2016-04-18 12:45:17 UTC (rev 171345) +++ PKGBUILD 2016-04-18 12:54:04 UTC (rev 171346) @@ -3,22 +3,27 @@ # Maintainer: Geoffroy Carrier <[email protected]> # Previous Contributor: Eric Belanger <[email protected]> # Previous Contributor: aeolist <[email protected]> +# Previous Contributor: Gabriel Rauter <[email protected]> pkgname=sysprof pkgver=3.20.0 -pkgrel=1 -pkgdesc="A sampling CPU profiler that uses a Linux kernel module to profile the entire system" +pkgrel=2 +pkgdesc="a profiling tool that helps in finding the functions in which a program uses most of its time" arch=('i686' 'x86_64') url="http://www.daimi.au.dk/~sandmann/sysprof/" license=("GPL") source=(https://download.gnome.org/sources/sysprof/3.20/$pkgname-$pkgver.tar.xz) -depends=('libglade' 'binutils' 'itstool') -makedepends=('libglade' 'binutils' 'linux-headers' 'polkit') +depends=('gtk3' 'glib2') +makedepends=('gtk3' 'glib2' 'systemd' 'itstool') md5sums=('d56e8492033b60e247634731e7f760b9') build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr --sysconfdir=/usr/lib + ./configure \ + --prefix=/usr \ + --sysconfdir=/usr/lib \ + --libexecdir=/usr/lib/ \ + --disable-Werror make } Modified: sysprof.install =================================================================== --- sysprof.install 2016-04-18 12:45:17 UTC (rev 171345) +++ sysprof.install 2016-04-18 12:54:04 UTC (rev 171346) @@ -1,5 +1,7 @@ post_install() { - depmod -a + glib-compile-schemas /usr/share/glib-2.0/schemas + update-desktop-database -q + gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor } post_upgrade() { @@ -9,4 +11,3 @@ post_remove() { post_install $1 } -
