diff options
-rw-r--r-- | .SRCINFO | 10 | ||||
-rw-r--r-- | PKGBUILD | 24 |
2 files changed, 17 insertions, 17 deletions
@@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Mon Sep 3 06:41:41 UTC 2018 +# Tue Oct 22 13:51:19 UTC 2019 pkgbase = lttng-tools pkgdesc = LTTng tracing control tools - pkgver = 2.10.5 + pkgver = 2.11.0 pkgrel = 1 url = http://lttng.org/ arch = i686 @@ -13,15 +13,15 @@ pkgbase = lttng-tools makedepends = xmlto depends = popt depends = liburcu>=0.7.2 - depends = lttng-ust>=2.10.0 + depends = lttng-ust>=2.11.0 depends = linux>=2.6.27 depends = libxml2>=2.7.6 optdepends = lttng-modules: kernel tracing support optdepends = babeltrace: view traces with `lttng view` command optdepends = man-db: view man pages with the `lttng help` command provides = lttng - source = http://lttng.org/files/lttng-tools/lttng-tools-2.10.5.tar.bz2 - sha1sums = 68790d44529a3b29896c35bb2350e8a0e1226264 + source = http://lttng.org/files/lttng-tools/lttng-tools-2.11.0.tar.bz2 + sha1sums = aa7e5784ed6c7fe68f91d16edf497cbd761564c2 pkgname = lttng-tools @@ -2,15 +2,15 @@ # Contributor: Manuel Mendez <mmendez534 at gmail dot com> pkgname=lttng-tools -pkgver=2.10.5 +pkgver=2.11.0 pkgrel=1 -pkgdesc="LTTng tracing control tools" -arch=('i686' 'x86_64') -url="http://lttng.org/" -license=('GPL2' 'LGPL2.1') -provides=('lttng') -source=(http://lttng.org/files/$pkgname/$pkgname-$pkgver.tar.bz2) -makedepends=('asciidoc' 'xmlto') +pkgdesc='LTTng tracing control tools' +arch=(i686 x86_64) +url='http://lttng.org/' +license=(GPL2 LGPL2.1) +provides=(lttng) +source=("http://lttng.org/files/$pkgname/$pkgname-$pkgver.tar.bz2") +makedepends=(asciidoc xmlto) depends=( 'popt' 'liburcu>=0.7.2' @@ -23,17 +23,17 @@ optdepends=( 'babeltrace: view traces with `lttng view` command' 'man-db: view man pages with the `lttng help` command' ) -sha1sums=('68790d44529a3b29896c35bb2350e8a0e1226264') +sha1sums=(aa7e5784ed6c7fe68f91d16edf497cbd761564c2) build() { - cd ${srcdir}/${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --sysconfdir=/etc --enable-man-pages make } package() { - cd ${srcdir}/${pkgname}-${pkgver} - make install DESTDIR=${pkgdir} + cd "${srcdir}/${pkgname}-${pkgver}" + make install DESTDIR="${pkgdir}" } |