Commit f12a1332 authored by Casey Strouse's avatar Casey Strouse

Add pagemon (0.01.10) package

Pagemon is an interactive memory/page monitoring tool allowing one to browse the memory map of an active running process.

Tested as working properly on Samsung XE50013-K01US.
parent 00023b89
require 'package'
class Pagemon < Package
version '0.01.10'
source_url 'http://kernel.ubuntu.com/~cking/tarballs/pagemon/pagemon-0.01.10.tar.gz'
source_sha1 'bc0b4c6db0e1551711e90ffa99162cbbe6217056'
depends_on "ncurses"
def self.build
system "sed -i 's,/usr,/usr/local,g' Makefile"
system "sed -i '/^CFLAGS += -Wall/s/$/ -I\\/usr\\/local\\/include\\/ncurses/' Makefile"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment