25 lines
474 B
Plaintext
25 lines
474 B
Plaintext
VERSION=9.7
|
|
PACKAGE=coreutils
|
|
SRC=${PACKAGE}-${VERSION}.tar.gz
|
|
URL=${SITE_GNU}/${PACKAGE}/${SRC}
|
|
CATEGORY=util
|
|
#DEPENDS=libs/libiconv
|
|
|
|
configure() {
|
|
echo "Configuring $PACKAGE"
|
|
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
|
|
./configure --disable-year2038
|
|
}
|
|
|
|
build() {
|
|
echo "Building $PACKAGE"
|
|
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
|
|
make -j ${NCPU}
|
|
}
|
|
|
|
install() {
|
|
echo "Installing $PACKAGE to ${DESTDIR}"
|
|
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
|
|
make install DESTDIR="${DESTDIR}"
|
|
}
|