SliTaz Packages

Community Doc Forum Pro Shop Bugs Hg
.

Receipt for package "acpid"

# SliTaz package receipt.

PACKAGE="acpid"
VERSION="2.0.32"
CATEGORY="system-tools"
TAGS="power-management"
SHORT_DESC="The ACPI event daemon with netlink."
MAINTAINER="domcox@slitaz.org"
LICENSE="GPL2"
WEB_SITE="https://sourceforge.net/projects/acpid2/"

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

KEY_FILE="key-constants"
SUGGESTED="pm-utils"

# What is the latest version available today?
current_version()
{
    wget -O - https://sourceforge.net/projects/acpid2/files/ 2>/dev/null | \
    sed '/scope="row/!d;s|.*/acpid-||;s|.tar.*||;q'
}

# Rules to configure and make the package.
compile_rules()
{
    ./configure --prefix=/usr $CONFIGURE_ARGS &&
    make &&
    make DESTDIR=$DESTDIR install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
    mkdir -p $fs/usr

    # acpid
    cp -a $install/usr/sbin    $fs/usr

    # acpi_listen
    cp -a $install/usr/bin    $fs/usr

    # acpid conf files
    mkdir -p $fs/etc

    cp -a $stuff/init.d    $fs/etc/
    cp -a $stuff/acpi    $fs/etc/
    chmod go-rwx $fs/etc/acpi/*.sh
    chmod go-rwx $fs/etc/acpi/events/*
}

# Pre and post remove commands for Tazpkg
post_install()
{
    if [ -z "$1" ]
      then
        /etc/init.d/acpid start || continue
    fi
    if ! grep -q ^ACPID_OPTIONS "$1/etc/daemons.conf"
      then
        echo '# ACPI daemon options.' >> "$1/etc/daemons.conf"
        echo 'ACPID_OPTIONS=""' >> "$1/etc/daemons.conf"
        echo '' >> "$1/etc/daemons.conf"
    fi
}

pre_remove()
{
    if [ -z "$1" ]
      then
        /etc/init.d/acpid stop
    fi
}
6025 packages and 203154 files in current database (Thu Apr 25 06:17:47 2024)