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