summaryrefslogtreecommitdiff
path: root/manualPorts/scanmem/Pkgfile
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-05-27 10:13:52 +0200
committerErich Eckner <git@eckner.net>2018-05-27 10:13:52 +0200
commit14a8f5d3c7889f2046a008b1b1dc29f485ebb359 (patch)
tree644ebb60f7155dd5c139d233857684fbcd8546e6 /manualPorts/scanmem/Pkgfile
downloadcrux-ports-14a8f5d3c7889f2046a008b1b1dc29f485ebb359.tar.xz
initial commit
Diffstat (limited to 'manualPorts/scanmem/Pkgfile')
-rw-r--r--manualPorts/scanmem/Pkgfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/manualPorts/scanmem/Pkgfile b/manualPorts/scanmem/Pkgfile
new file mode 100644
index 0000000..5e625fe
--- /dev/null
+++ b/manualPorts/scanmem/Pkgfile
@@ -0,0 +1,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
+
+}