#!/bin/sh

NAME="envsubst"
DESC="perform variable substitutions on input"

MAKEDEPS=""

PKG_VER=0.1
SOURCE="https://distfiles.dereferenced.org/envsubst/envsubst-$PKG_VER.tar.xz"

build() {
	make
}

package() {
	make DESTDIR="$PKG_DEST" prefix="/usr" install
}