2017-04-18 09:45:05 +02:00
|
|
|
|
# Description: Çalışan Linux sistemi hakkında bilgi toplamanın basitleştirilmesi için altyapı.
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://sourceware.org/systemtap/
|
2017-04-18 09:45:05 +02:00
|
|
|
|
# Packager: milisarge
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# Depends on: elfutils
|
|
|
|
|
|
|
|
|
|
name=systemtap
|
|
|
|
|
version=2.9
|
|
|
|
|
release=1
|
|
|
|
|
source=(http://sourceware.org/$name/ftp/releases/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
|
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
|
--prefix=/usr \
|
|
|
|
|
--mandir=/usr/man \
|
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
|
--disable-rpath \
|
|
|
|
|
|
|
|
|
|
make
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
|
|
}
|