2024-04-08 21:54:49 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
|
|
|
# Contributor: Christian Pellegrin (chripell) <chripell@fsfe.org>
|
|
|
|
# Contributor: An Nguyen (stk) <an@linux.com>
|
|
|
|
# Contributor: 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
|
2024-05-13 06:56:52 +02:00
|
|
|
pkgver=5.1
|
|
|
|
pkgrel=1
|
2019-10-28 14:09:31 +01:00
|
|
|
pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system"
|
2024-04-08 21:54:49 +02:00
|
|
|
url="https://sourceware.org/systemtap/"
|
|
|
|
arch=('x86_64')
|
2015-06-10 11:05:28 +02:00
|
|
|
license=('GPL')
|
2021-07-06 09:15:18 +02:00
|
|
|
depends=('elfutils' 'nss' 'python' 'cpio')
|
2024-04-08 21:54:49 +02:00
|
|
|
makedepends=('python-setuptools' 'xmlto')
|
2018-02-14 12:31:23 +01:00
|
|
|
optdepends=('sqlite3: for storing results in a database')
|
2024-04-08 21:54:49 +02:00
|
|
|
options=('!emptydirs')
|
|
|
|
install="${pkgname}.install"
|
|
|
|
source=("https://sourceware.org/ftp/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz"{,.asc})
|
2024-05-13 06:56:52 +02:00
|
|
|
sha512sums=('da0fe237d2124031a5786d1221dbb420d90da5497376715fd43a7a9f61a354a229c1128e67ce6becbc012aa3796dc5d337149e239e3c1def0651b179e5bf199f'
|
2022-07-11 21:25:36 +02:00
|
|
|
'SKIP')
|
2021-11-21 22:14:49 +01:00
|
|
|
|
2024-04-08 21:54:49 +02:00
|
|
|
validpgpkeys=('41A0C11274B1E87FE28E4C53E3D77E1F95161991')
|
2021-11-21 22:14:49 +01:00
|
|
|
|
|
|
|
build() {
|
2024-04-08 21:54:49 +02:00
|
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--libexecdir=/usr/lib/"${pkgname}" \
|
|
|
|
--libdir=/usr/lib/"${pkgname}" \
|
|
|
|
--mandir=/usr/share/man/ \
|
|
|
|
--sbindir=/usr/bin \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--enable-pie \
|
|
|
|
--disable-docs \
|
|
|
|
--enable-htmldocs \
|
|
|
|
--with-python3
|
|
|
|
make
|
2015-06-10 11:05:28 +02:00
|
|
|
}
|
|
|
|
|
2024-04-24 07:19:24 +02:00
|
|
|
check() {
|
|
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make check
|
|
|
|
}
|
|
|
|
|
2015-06-10 11:05:28 +02:00
|
|
|
package() {
|
2024-04-08 21:54:49 +02:00
|
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2024-04-24 07:19:24 +02:00
|
|
|
rm -r "${pkgdir}/usr/include/sys"
|
2015-06-10 11:05:28 +02:00
|
|
|
}
|