#!/bin/bash

DEPS=(glibc)
SOURCE=http://download.savannah.nongnu.org/releases/attr/attr-2.5.1.tar.xz

DESC="Extended attribute support library for ACL support"

build () {

    ./configure --prefix=/usr --disable-static --sysconfdir=/etc --docdir=/usr/share/doc/attr-2.5.1

    make
    make check
    make DESTDIR=$PKG_DEST install
}