#!/bin/bash

DEPS=(glibc bash)

SOURCE=https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.xz
DESC="The gnu m4 macro processor"


build () {
    ./configure --prefix=/usr 
    make
    make check
    make DESTDIR=$PKG_DEST install
}