SliTaz Packages

Community Doc Forum Pro Shop Bugs Hg
.

Receipt for package "diffutils"

# SliTaz package receipt.

PACKAGE="diffutils"
VERSION="3.8"
CATEGORY="development"
SHORT_DESC="Show differences between two files."
MAINTAINER="pascal.bellard@slitaz.org"
LICENSE="GPL3"
WEB_SITE="https://www.gnu.org/software/diffutils/"

TARBALL="$PACKAGE-$VERSION.tar.xz"
WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"

SUGGESTED="diffutils-lang"

# What is the latest version available today?
current_version()
{
    wget -O - ${WGET_URL%/*} 2>/dev/null | \
    sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
}

# Rules to configure and make the package.
compile_rules()
{
    # 3.8 might be obsolete
    sed -i 's:= @mkdir_p@:= /bin/mkdir -p:' po/Makefile.in.in

    ./configure        \
        --prefix=/usr    \
        $CONFIGURE_ARGS &&
    make &&
    make install DESTDIR=$DESTDIR
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
    cook_copy_folders    bin

# moved to package diffutils-lang
    # Localisations:
#    for lang in da de fr id it pt_BR ro ru; do
#        mkdir -p $fs/usr/share/locale/$lang/LC_MESSAGES
#        cp -a $install/usr/share/locale/$lang/LC_MESSAGES/diffutils.mo \
#            $fs/usr/share/locale/$lang/LC_MESSAGES/diffutils.mo
#    done
}

# Overlap busybox
pre_install()
{
    rm -f            "$1/usr/bin/diff"
    rm -f            "$1/usr/bin/cmp"
}

post_remove()
{
    ln -s /bin/busybox    "$1/usr/bin/diff"
    ln -s /bin/busybox    "$1/usr/bin/cmp"
}
6025 packages and 203154 files in current database (Thu Apr 25 06:17:47 2024)