SliTaz Packages

Community Doc Forum Pro Shop Bugs Hg
.

Receipt for package "dwm"

# SliTaz package receipt.

PACKAGE="dwm"
VERSION="6.3"
CATEGORY="x-window"
TAGS="window-manager"
SHORT_DESC="Very light dynamic window manager for X."
MAINTAINER="pankso@slitaz.org"
LICENSE="MIT"
WEB_SITE="https://dwm.suckless.org/"

TARBALL="$PACKAGE-$VERSION.tar.gz"
WGET_URL="https://dl.suckless.org/dwm/$TARBALL"

DEPENDS="xorg-libX11 xorg-xsetroot"
BUILD_DEPENDS="xorg-libX11-dev xorg-libXinerama-dev xorg-xineramaproto
    xorg-xproto"

HOST_ARCH="i486 arm"

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

# Rules to configure and make the package.
compile_rules()
{
    # From blue to grey and have lighter grey
    sed -i s/'#0066ff'/'#222222'/g    config.def.h
    sed -i s/'#cccccc'/'#f1efeb'/g    config.def.h

    # 6 tag-mask
    sed -i s/', "7", "8", "9"'//    config.def.h

    # Firefox on current tag-mask
    sed -i s/'1 << 8,'/'0,     '/    config.def.h

    # [Shift]+[Alt]+[Enter]
    sed -i s/uxterm/xterm/        config.def.h

    make CC=${HOST_SYSTEM}-gcc
}

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

    cp -a $src/dwm            $fs/usr/bin
    cp -a $stuff/dwm-session    $fs/usr/bin
    chown 0.0            $fs/usr/bin/*
}

post_install()
{
    res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
    # Adding dwm to SLIM available sessions.
    if ! echo "$res" | grep -q $PACKAGE
      then
        echo
        echo -n "Adding $PACKAGE to /etc/slim.conf..."
        sed -i "s/^sessions.*/sessions            ${res},dwm/" /etc/slim.conf
        status
    fi
}

post_remove()
{
    # Remove dwm from SLIM available sessions.
    if grep -q dwm "$1/etc/slim.conf"
      then
        sed -i s/,dwm// "$1/etc/slim.conf"
    fi
}
5935 packages and 845883 files in cooking database (Sun Jun 30 00:45:24 2024)