2018-09-03 12:27:33 +02:00
|
|
|
# Maintainer : George Angelopoulos <george@usermod.net>
|
|
|
|
# Contributor : Christian Rebischke <Chris.Rebischke@archlinux.org>
|
|
|
|
# Contributor : dront78 <dront78@gmail.com>
|
2015-06-10 11:05:28 +02:00
|
|
|
pkgname=systemtap
|
2018-11-05 16:08:53 +01:00
|
|
|
pkgver=4.0
|
2018-11-16 19:28:43 +01:00
|
|
|
pkgrel=2
|
2018-02-14 12:31:23 +01:00
|
|
|
pkgdesc="provides infrastructure to simplify the gathering of information about the running system."
|
2015-06-10 11:05:28 +02:00
|
|
|
url="http://sourceware.org/systemtap/"
|
2018-02-14 12:31:23 +01:00
|
|
|
arch=('x86_64' 'i686')
|
2015-06-10 11:05:28 +02:00
|
|
|
license=('GPL')
|
2018-11-16 19:28:43 +01:00
|
|
|
depends=('elfutils' 'nss' 'python2' 'cpio')
|
2018-06-16 11:12:35 +02:00
|
|
|
makedepends=('python2-setuptools' 'xmlto')
|
2018-02-14 12:31:23 +01:00
|
|
|
optdepends=('sqlite3: for storing results in a database')
|
|
|
|
source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz"
|
|
|
|
"${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc"
|
2018-06-03 19:06:43 +02:00
|
|
|
)
|
2018-11-05 16:08:53 +01:00
|
|
|
sha512sums=('66b5ba1902ed974101429dce9fee849273d3dc64e862c057177d158c5f284cc93299819ee8ee49d4bd3b7ff47a3512b1c68b74cad374147ce67fa406c7518c79'
|
2018-08-20 11:45:16 +02:00
|
|
|
'SKIP')
|
2017-03-27 21:15:49 +02:00
|
|
|
install='systemtap.install'
|
2018-11-05 16:08:53 +01:00
|
|
|
validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8')
|
2018-08-20 11:45:16 +02:00
|
|
|
|
2015-06-10 11:05:28 +02:00
|
|
|
|
|
|
|
build() {
|
2017-04-07 01:56:20 +02:00
|
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--libexecdir=/usr/lib/"${pkgname}" \
|
|
|
|
--libdir=/usr/lib/"${pkgname}" \
|
|
|
|
--mandir=/usr/share/man/ \
|
2018-11-05 16:08:53 +01:00
|
|
|
--sbindir=/usr/bin \
|
2018-02-14 12:31:23 +01:00
|
|
|
--localstatedir=/var \
|
2017-04-07 01:56:20 +02:00
|
|
|
--enable-pie \
|
2018-02-14 12:31:23 +01:00
|
|
|
--disable-docs \
|
|
|
|
--enable-htmldocs
|
2015-06-10 11:05:28 +02:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2018-02-14 12:31:23 +01:00
|
|
|
rmdir "${pkgdir}/var/run/stap-server/"
|
|
|
|
rmdir "${pkgdir}/var/run/"
|
2015-06-10 11:05:28 +02:00
|
|
|
}
|
|
|
|
|