25 lines
469 B
Plaintext
25 lines
469 B
Plaintext
# Description: Çalışan Linux sistemi hakkında bilgi toplamanın basitleştirilmesi için altyapı.
|
||
# URL: http://sourceware.org/systemtap/
|
||
# Packager: milisarge
|
||
# 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
|
||
|
||
}
|