wok annotate slitaz-configs/receipt @ rev 18898

slitaz-boot-scripts (424), slitaz-tools (966), tazpanel (567), tazusb (184)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 17 11:45:28 2016 +0100 (2016-02-17)
parents 60ed06eac8b9
children 755411fc8baf
rev   line source
pankso@274 1 # SliTaz package receipt.
pankso@274 2
pankso@274 3 PACKAGE="slitaz-configs"
pascal@18777 4 VERSION="270"
pankso@274 5 CATEGORY="base-system"
pankso@12411 6 SHORT_DESC="SliTaz config files and artwork."
pankso@274 7 MAINTAINER="pankso@slitaz.org"
pascal@15021 8 LICENSE="GPL3"
pankso@274 9 WEB_SITE="http://www.slitaz.org/"
pascal@14355 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@14758 11 WGET_URL="http://hg.slitaz.org/slitaz-configs/archive/$VERSION.tar.gz"
pankso@16167 12 HOST_ARCH="i486 arm"
pankso@274 13
pankso@16374 14 DEPENDS="slitaz-configs-base xorg-libXcomposite xorg-libXdamage \
pankso@16374 15 xorg-xcompmgr transset-df ttf-dejavu slim"
pankso@12161 16
pankso@16167 17 # Special case for ARM since some (most) config files are in slitaz-arm repo.
pankso@16167 18 # i486/arm common configs are provided by slitaz-configs-base.
pankso@16167 19 case "$SLITAZ_ARCH" in
pankso@16421 20 i?86) CONFIG_FILES="/etc/slitaz/applications.conf" ;;
pankso@16423 21 arm*) DEPENDS="slitaz-arm-configs ttf-dejavu slim" ;;
pankso@16167 22 esac
pankso@16167 23
pankso@16566 24 case "$ARCH" in
pankso@16566 25 i?86*) BUILD_DEPENDS="locale-fr locale-pt_BR locale-ru" ;;
pankso@16566 26 esac
pankso@16566 27
al@14908 28 # Rules to configure and make the package.
al@14908 29 compile_rules()
al@14908 30 {
pankso@16167 31 case "$ARCH" in
pankso@16167 32 i?86)
pankso@16167 33 make DESTDIR=$DESTDIR menu
pankso@16167 34 ln -s menu.en.xml $install/etc/xdg/openbox/menu.xml ;;
pankso@16167 35 esac
al@14908 36 }
al@14908 37
pankso@274 38 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@274 39 genpkg_rules()
al@14803 40 {
pankso@16167 41 cd ${src}
pankso@16167 42 case "$ARCH" in
pankso@16167 43 i?86)
pankso@16167 44 # Copy rootfs files from the stuff and set permissions.
pankso@16167 45 mkdir -p $fs/etc/xdg/openbox $fs/usr/share
pankso@16167 46 cp -a $src/rootfs/etc/xdg/openbox $fs/etc/xdg
pankso@16167 47
pankso@16167 48 # /usr/share
pankso@16167 49 for i in applications lxdm slim slitaz
pankso@16167 50 do
pankso@16167 51 cp -r $src/rootfs/usr/share/$i $fs/usr/share
pankso@16167 52 done
pankso@16167 53 cp -a $src/rootfs/usr/bin $fs/usr
pankso@16167 54 cp -a $src/rootfs/etc/lxpanel $fs/etc
pankso@16167 55 cp -a $src/rootfs/etc/slitaz $fs/etc
pankso@16421 56 cp -a $install/etc/xdg/openbox/menu.en.xml \
pankso@16421 57 $install/etc/xdg/openbox/menu.xml \
pankso@16167 58 $fs/etc/xdg/openbox ;;
pankso@16167 59 arm)
pankso@16421 60 mkdir -p $fs/usr/share
pankso@16421 61 cp -a $src/rootfs/usr/share/applications $fs/usr/share
pankso@16421 62 cp -a $src/rootfs/usr/share/slitaz $fs/usr/share ;;
pankso@16167 63 esac
al@18612 64
al@18612 65 # Put LXPanel profile to /etc/skel for new users
al@18612 66 mkdir -p $fs/etc/skel/.config/lxpanel
al@18612 67 cp -a $fs/etc/lxpanel/slitaz $fs/etc/skel/.config/lxpanel
al@18612 68
pankso@715 69 chown -R root.root $fs
pankso@274 70 }
pankso@2838 71
pankso@2838 72 post_install()
pankso@2838 73 {
pankso@16167 74 case "$SLITAZ_ARCH" in
pankso@16167 75 i?86)
pankso@16167 76 # By default slim provide a base theme and config file have both
pankso@16167 77 # base and slitaz who will be choose randomly, so make sure we use
pankso@16167 78 # only slitaz theme.
pascal@18730 79 if grep -q 'current_theme slitaz,base' "$1/etc/slim.conf"; then
pankso@16167 80 sed -i s/"current_theme .*"/"current_theme slitaz"/ \
pascal@18730 81 "$1/etc/slim.conf"
pankso@16167 82 fi ;;
pankso@16167 83 esac
pankso@2838 84 }