blob: 5e625feecb23e4be922e531e9dcfd997626d1b0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Description: debugging utility designed to isolate the address of an arbitrary variable in an executing process
# URL:
# Maintainer: Erich Eckner, crux at eckner dot net
name=scanmem
version=0.17
release=1
source=("https://github.com/${name}/${name}/archive/v${version}.zip")
build() {
cd ${name}-${version}
./autogen.sh
./configure --prefix=/usr --enable-gui --disable-nls
make
make DESTDIR=$PKG install
find $PKG \
\( \
-name COPYING -o \
-name README -o \
-name TODO \
\) -delete
}
|