#!/bin/bash

MAKEDEPS=(make )
DEPS=(glibc attr)

PKG_VER=2.7
SOURCE=https://ftp.gnu.org/gnu/patch/patch-$PKG_VER.tar.xz
DESC="A utility to apply patch files to a file"

build () {
    ./configure --prefix=/usr
    make
}

package () {
    make DESTDIR=$PKG_DEST install 
}