wok-next view xfe/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xfe"
4 VERSION="1.40"
5 CATEGORY="system-tools"
6 SHORT_DESC="FOX tools for X Window"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://roland65.free.fr/xfe/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="libpng-dev libjpeg-turbo-dev tiff-dev libxft-dev fox-dev \
15 automake intltool gettext-dev libxrandr-dev libxi"
16 SPLIT="$PACKAGE-extra-icons $PACKAGE xfi xfw xfp"
18 compile_rules() {
19 # Required by freetype-dev-2.4.11
20 sed -i 's|config/ftheader.h|freetype/config/ftheader.h|' configure.ac
22 ./autogen.sh
23 ./configure $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 COOKOPTS="!pixmaps !menus"
30 DEPENDS="fox libx11 libxft libxrandr" # the same depends
31 case $PACKAGE in
32 xfe-extra-icons)
33 copy kde-theme/ windows-theme/ xfe-theme/
34 DEPENDS="xfe"
35 CAT="misc|extra icon themes"
36 ;;
37 xfe)
38 copy xfe xfe/ xfe.desktop xfe.png @rm
39 SUGGESTED="adie calculator shutterbug xfe-extras xfi"
40 CAT="system-tools|file manager"
41 ;;
42 xfi)
43 copy xfi xfi.desktop xfi.png @rm
44 CAT="x-window|image viewer"
45 ;;
46 xfw)
47 copy xfw xfw.desktop xfw.png @rm
48 CAT="x-window|text editor"
49 TAGS="text-editor"
50 ;;
51 xfp)
52 copy xfp xfp.desktop xfp.png @rm
53 CAT="x-window|package manager"
54 ;;
55 esac
56 TAGS="file-manager"
57 }