wok annotate dwm/receipt @ rev 24439

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 13 18:01:32 2022 +0000 (2022-02-13)
parents 970c5ec9a60a
children e81a854f7503
rev   line source
pankso@2378 1 # SliTaz package receipt.
pankso@2378 2
pankso@2378 3 PACKAGE="dwm"
erjo@14449 4 VERSION="6.0"
pankso@2378 5 CATEGORY="x-window"
pankso@2378 6 SHORT_DESC="Very light dynamic window manager for X."
pankso@2378 7 MAINTAINER="pankso@slitaz.org"
pascal@15202 8 LICENSE="MIT"
pankso@2378 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@16103 10 WEB_SITE="http://dwm.suckless.org/"
pankso@9766 11 WGET_URL="http://dl.suckless.org/dwm/$TARBALL"
al@17501 12 TAGS="window-manager"
pankso@16103 13 HOST_ARCH="i486 arm"
pankso@9766 14
pankso@2378 15 DEPENDS="xorg-libX11 xorg-xsetroot"
pankso@9766 16 BUILD_DEPENDS="xorg-libX11-dev xorg-xproto xorg-xineramaproto \
pankso@9766 17 xorg-libXinerama-dev"
pankso@2378 18
pascal@24439 19 # What is the latest version available today?
pascal@24439 20 current_version()
pascal@24439 21 {
pascal@24439 22 wget -O - ${WGET_URL%/*} 2>/dev/null | \
pascal@24439 23 sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
pascal@24439 24 }
pascal@24439 25
pankso@2378 26 # Rules to configure and make the package.
pankso@2378 27 compile_rules()
pankso@2378 28 {
pankso@16103 29 # From blue to grey and have lighter grey
pankso@16103 30 sed -i s/'#0066ff'/'#222222'/g config.def.h
pankso@2378 31 sed -i s/'#cccccc'/'#f1efeb'/g config.def.h
pankso@2378 32 # 6 tag-mask
pankso@2378 33 sed -i s/', "7", "8", "9"'// config.def.h
pankso@2378 34 # Firefox on current tag-mask
pankso@2378 35 sed -i s/'1 << 8,'/'0, '/ config.def.h
pankso@2378 36 # [Shift]+[Alt]+[Enter]
pankso@2378 37 sed -i s/uxterm/xterm/ config.def.h
pankso@16103 38 make CC=${HOST_SYSTEM}-gcc
pankso@2378 39 }
pankso@2378 40
pankso@2378 41 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@2378 42 genpkg_rules()
pankso@2378 43 {
pankso@2378 44 mkdir -p $fs/usr/bin
pankso@2378 45 cp -a $src/dwm $fs/usr/bin
pankso@9766 46 cp -a $stuff/dwm-session $fs/usr/bin
pankso@2378 47 chown 0.0 $fs/usr/bin/*
pankso@2378 48 }
pankso@2378 49
pankso@2378 50 post_install()
pankso@2378 51 {
pascal@18730 52 res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
pankso@2378 53 # Adding WM to SLIM available sessions.
pankso@2378 54 if ! echo "$res" | grep -q $PACKAGE; then
pascal@20319 55 echo
pankso@2378 56 echo -n "Adding $PACKAGE to /etc/slim.conf..."
pankso@2378 57 sed -i "s/^sessions.*/sessions ${res},dwm/" /etc/slim.conf
pankso@2378 58 status
pankso@2378 59 fi
pankso@2378 60 }
pankso@2378 61
pankso@2378 62 post_remove()
pankso@2378 63 {
pankso@2378 64 # Remove karmen from SLIM available sessions.
pascal@18730 65 if grep -q dwm "$1/etc/slim.conf"; then
pascal@18730 66 sed -i s/,dwm// "$1/etc/slim.conf"
pankso@2378 67 fi
pankso@2378 68 }