wok-next view gnumeric/receipt @ rev 20502
Swap: current mesa (which is developing and change it's version) is just mesa, while old mesa is mesa12 now (will be removed if no one old package require it).
Also, change long names to its origins: libglu-mesa -> glu, libglw-mesa -> glw, all variations with libegl -> mesa-libegl (because it is part of mesa package).
Also, change long names to its origins: libglu-mesa -> glu, libglw-mesa -> glw, all variations with libegl -> mesa-libegl (because it is part of mesa package).
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Mar 16 00:27:34 2018 +0200 (2018-03-16) |
parents | dd145c435e4b |
children | d3444352a0af |
line source
1 # SliTaz package receipt.
3 PACKAGE="gnumeric"
4 VERSION="1.12.32"
5 CATEGORY="office"
6 SHORT_DESC="Office Spreadsheet application."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.gnumeric.org/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="at-spi2-core at-spi2-atk atk bzlib cairo dbus fontconfig freetype \
14 gdk-pixbuf glib glibc-base gtk+3 harfbuzz libcroco libffi libgsf libpng16 \
15 librsvg xorg-libxcb libxml2 libxslt pango pcre xorg-pixman util-linux-uuid xorg-libICE \
16 xorg-libSM xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor \
17 xorg-libXdamage xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXi \
18 xorg-libXinerama xorg-libXrandr xorg-libXrender zlib dconf"
19 BUILD_DEPENDS="gtk-doc bison goffice-dev gtk+3-dev intltool gettext \
20 xorg-dev zlib-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --without-perl \
27 --without-python \
28 --without-gda \
29 $CONFIGURE_ARGS &&
30 make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib $fs/usr/share
38 cp -a $install/usr/bin $fs/usr
40 cp -a $install/usr/lib/*.so* $fs/usr/lib
41 cp -a $install/usr/lib/gnumeric $fs/usr/lib
42 cp -a $install/usr/lib/goffice $fs/usr/lib
43 find $fs/usr/lib -name '*.la' -delete
45 cp -a $install/usr/share/applications $fs/usr/share
46 cp -a $install/usr/share/glib-2.0 $fs/usr/share
47 cp -a $install/usr/share/gnumeric $fs/usr/share
48 cp -a $install/usr/share/icons $fs/usr/share
49 cp -a $install/usr/share/pixmaps $fs/usr/share
50 find $fs/usr/share/pixmaps -name '*.ico' -delete
51 }