summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorbarfin2021-05-19 05:15:17 +0430
committerbarfin2021-05-19 05:15:17 +0430
commit2a6f3ab3b7e061aba42ad3640972dd5529a0c196 (patch)
treea43da4ba186159c09f4c58d03eca5862a9de86d6
parent75b8725fb294e1c28c8480714771d0b6dd57d19b (diff)
downloadaur-2a6f3ab3b7e061aba42ad3640972dd5529a0c196.tar.gz
0.5+b4 Update
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD26
2 files changed, 16 insertions, 21 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 109b1567784e..2db99fd7707a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,16 @@
pkgbase = latencytop
pkgdesc = A tool for software developers, aimed at identifying where system latency occurs.
- pkgver = 0.5
- pkgrel = 4
+ pkgver = 0.5+b4
+ pkgrel = 1
url = http://git.infradead.org/latencytop.git
- arch = i686
arch = x86_64
license = GPL
depends = gtk2
depends = ncurses
- source = http://ftp.de.debian.org/debian/pool/main/l/latencytop/latencytop_0.5.orig.tar.gz
- md5sums = 73bb3371c6ee0b0e68e25289027e865c
+ depends = gdk-pixbuf2
+ depends = glib2
+ source = http://ftp.de.debian.org/debian/pool/main/l/latencytop/latencytop_0.5+b4_amd64.deb
+ md5sums = bf6f7271da9165620ac37e960e95cb40
pkgname = latencytop
diff --git a/PKGBUILD b/PKGBUILD
index eca3b5b89ade..5a2cc1f1abfe 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,25 +1,19 @@
# Maintainer: Joao Cordeiro <jlcordeiro at gmail dot com>
-# Contributor: Stéphane Gaudreault <stephane.gaudreault@gmail.com>
+# Contributor: St�phane Gaudreault <stephane.gaudreault@gmail.com>
pkgname=latencytop
-pkgver=0.5
-pkgrel=4
+pkgver='0.5+b4'
+pkgrel=1
pkgdesc="A tool for software developers, aimed at identifying where system latency occurs."
-arch=('i686' 'x86_64')
+arch=(x86_64)
url="http://git.infradead.org/latencytop.git" # used to be http://www.latencytop.org but Intel appears to have killed it
-depends=('gtk2' 'ncurses')
+depends=('gtk2' 'ncurses' 'gdk-pixbuf2' 'glib2')
license=('GPL')
-source=("http://ftp.de.debian.org/debian/pool/main/l/latencytop/latencytop_${pkgver}.orig.tar.gz")
-md5sums=('73bb3371c6ee0b0e68e25289027e865c')
-
-build() {
- cd "$srcdir"/latencytop-${pkgver}
-
- make
-}
+source=("http://ftp.de.debian.org/debian/pool/main/l/latencytop/latencytop_${pkgver}_amd64.deb")
+md5sums=('bf6f7271da9165620ac37e960e95cb40')
package() {
- cd "$srcdir"/latencytop-${pkgver}
-
- install -Dm755 latencytop "$pkgdir"/usr/bin/latencytop
+ tar -xvf data.tar.xz
+ mv ${srcdir}/usr/sbin ${srcdir}/usr/bin
+ cp -r ${srcdir}/* ${pkgdir}
}