depends_on'readline'# software dependenciesdepends_on'libevent'depends_on'ncurses'defself.build# self.build contains commands needed to build the software from source
system"make"# ordered chronologicallyenddefself.install# self.install contains commands needed to install the software on the target systemsystem"make","DESTDIR=#{CREW_DEST_DIR}","install"# remember to include DESTDIR set to CREW_DEST_DIR - needed to keep track of changes made to systemend# during installationend