SliTaz Packages

Community Doc Forum Pro Shop Bugs Hg
.

Receipt for package "flex"

# SliTaz package receipt.

PACKAGE="flex"
VERSION="2.6.4"
CATEGORY="development"
SHORT_DESC="Flex is a fast lexical analyser generator."
MAINTAINER="pankso@slitaz.org"
LICENSE="BSD"
WEB_SITE="https://github.com/westes/flex"

TARBALL="$PACKAGE-$VERSION.tar.gz"
WGET_URL="https://github.com/westes/$PACKAGE/releases/download/v$VERSION/$TARBALL"

DEPENDS="bison"
BUILD_DEPENDS="bison"
HOST_ARCH="i486 arm"

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

# Rules to configure and make the package.
compile_rules()
{
    case "$ARCH" in
        arm*)
            export ac_cv_func_malloc_0_nonnull=yes
            export ac_cv_func_realloc_0_nonnull=yes
    esac

    ./configure $CONFIGURE_ARGS &&
    make -j 1 &&
    make install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
    mkdir -p $fs/usr
    cp -a $install/usr/bin $fs/usr
    ln -s flex $fs/usr/bin/lex
    cp -a $install/usr/lib $fs/usr
    cp -a $install/usr/include $fs/usr

    # locales
    mkdir -p $fs/usr/share/locale
    LOCALES="da de es fr pt_BR ro ro zh_CN zh_TW"
    for locale in $LOCALES
        do
        cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 
        done
}
6017 packages and 861739 files in cooking database (Sun Sep 21 00:48:01 2025)