16 lines
356 B
Bash
16 lines
356 B
Bash
|
|
fetch $DIFFUTILS_URL
|
|
|
|
cd "$SOURCES" && tar xf diffutils-$DIFFUTILS_VERSION.tar.xz && cd diffutils-$DIFFUTILS_VERSION
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--host=$TARGET \
|
|
gl_cv_func_strcasecmp_works=y \
|
|
--build=$(./build-aux/config.guess) \
|
|
--silent \
|
|
--quiet
|
|
|
|
make && make DESTDIR="$SYSROOT" install
|
|
|
|
cd "$SOURCES" && rm -rf diffutils-$DIFFUTILS_VERSION |