moved from AUR to community
This commit is contained in:
parent
cf13ef22d0
commit
12037b90a4
3 changed files with 17 additions and 15 deletions
12
.SRCINFO
12
.SRCINFO
|
@ -1,16 +1,12 @@
|
||||||
# Generated by mksrcinfo v8
|
|
||||||
# Sun Mar 5 09:28:04 UTC 2017
|
|
||||||
pkgbase = systemtap
|
pkgbase = systemtap
|
||||||
pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system.
|
pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system.
|
||||||
pkgver = 3.1
|
pkgver = 3.1
|
||||||
pkgrel = 2
|
pkgrel = 3
|
||||||
url = http://sourceware.org/systemtap/
|
url = http://sourceware.org/systemtap/
|
||||||
|
install = systemtap.install
|
||||||
arch = i686
|
arch = i686
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
arch = armv7h
|
|
||||||
arch = armv6h
|
|
||||||
license = GPL
|
license = GPL
|
||||||
makedepends = gcc
|
|
||||||
depends = elfutils
|
depends = elfutils
|
||||||
depends = nss
|
depends = nss
|
||||||
depends = python2
|
depends = python2
|
||||||
|
@ -18,8 +14,8 @@ pkgbase = systemtap
|
||||||
depends = texlive-latexextra
|
depends = texlive-latexextra
|
||||||
depends = latex2html
|
depends = latex2html
|
||||||
optdepends = sqlite3
|
optdepends = sqlite3
|
||||||
source = http://sourceware.org/systemtap/ftp/releases/systemtap-3.1.tar.gz
|
source = systemtap-3.1.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.1.tar.gz
|
||||||
sha1sums = 2927ee7e780b45e47d770798f80dfd5be62e095d
|
sha512sums = 07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d
|
||||||
|
|
||||||
pkgname = systemtap
|
pkgname = systemtap
|
||||||
|
|
||||||
|
|
16
PKGBUILD
16
PKGBUILD
|
@ -1,19 +1,22 @@
|
||||||
|
# $Id$
|
||||||
|
# Maintainer : Christian Rebischke <Chris.Rebischke@archlinux.org>
|
||||||
|
# Contributor:dront78 <dront78@gmail.com>
|
||||||
pkgname=systemtap
|
pkgname=systemtap
|
||||||
pkgver=3.1
|
pkgver=3.1
|
||||||
pkgrel=2
|
pkgrel=3
|
||||||
pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system."
|
pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system."
|
||||||
url="http://sourceware.org/systemtap/"
|
url="http://sourceware.org/systemtap/"
|
||||||
arch=('i686' 'x86_64' 'armv7h' 'armv6h')
|
arch=('i686' 'x86_64')
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
depends=('elfutils' 'nss' 'python2' 'texlive-fontsextra' 'texlive-latexextra' 'latex2html')
|
depends=('elfutils' 'nss' 'python2' 'texlive-fontsextra' 'texlive-latexextra' 'latex2html')
|
||||||
makedepends=('gcc')
|
|
||||||
optdepends=('sqlite3')
|
optdepends=('sqlite3')
|
||||||
source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz)
|
source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz")
|
||||||
sha1sums=('2927ee7e780b45e47d770798f80dfd5be62e095d')
|
sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d')
|
||||||
|
install='systemtap.install'
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
./configure --prefix=/usr --sysconfdir=/etc || return 1
|
./configure --prefix=/usr --sysconfdir=/etc
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,4 +25,3 @@ package() {
|
||||||
make DESTDIR="${pkgdir}" install
|
make DESTDIR="${pkgdir}" install
|
||||||
}
|
}
|
||||||
|
|
||||||
# vim:set ts=2 sw=2 et:
|
|
||||||
|
|
4
systemtap.install
Normal file
4
systemtap.install
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
post_install() {
|
||||||
|
echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile"
|
||||||
|
echo "the kernel with CONFIG_DEBUG_INFO enabled."
|
||||||
|
}
|
Loading…
Reference in a new issue