wok-next view efl/receipt @ rev 20632

gegl: fix packing
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 27 10:53:56 2018 +0300 (2018-04-27)
parents 8c1b5830f802
children 4682873d09ff
line source
1 # SliTaz package receipt v2.
3 PACKAGE="efl"
4 VERSION="1.8.4"
5 CATEGORY="base-system"
6 SHORT_DESC="EFL Core data structure library"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.enlightenment.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.enlightenment.org/rel/libs/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="gstreamer0-dev gst0-plugins-base-dev check-dev \
15 util-linux-mount-dev util-linux-blkid-dev eudev-dev openssl-dev dbus-dev \
16 libjpeg-turbo-dev fribidi-dev giflib-dev tiff-dev libsndfile-dev lua-dev \
17 xorg-libXp-dev xorg-printproto xorg-scrnsaverproto xorg-libXScrnSaver-dev \
18 xorg-libXcursor-dev xorg-libXcomposite-dev xorg-libXinerama-dev \
19 xorg-libXrandr-dev xorg-libXtst-dev mesa-dev util-linux-uuid-dev libxml2-dev \
20 flac-dev autoconf automake expat-dev xorg-libxshmfence-dev"
21 SPLIT="efl-dev"
23 compile_rules() {
24 sed -i 's/DGifCloseFile([^)]*/&,NULL/' \
25 src/modules/evas/loaders/gif/evas_image_load_gif.c
27 autoreconf -v &&
28 ac_aux_dir=$src \
29 ./configure \
30 --disable-static \
31 --disable-doc \
32 --disable-pulseaudio \
33 --disable-physics \
34 $CONFIGURE_ARGS &&
35 fix libtool &&
36 make &&
37 make -j1 DESTDIR=$install install
38 }
40 genpkg_rules() {
41 case $PACKAGE in
42 efl)
43 copy @std
44 rm -rf $fs/usr/share/mime
45 DEPENDS="gstreamer0 gst0-plugins-base util-linux-mount \
46 util-linux-blkid eudev openssl dbus libjpeg-turbo fribidi giflib \
47 tiff libsndfile lua xorg-libXp xorg-libXScrnSaver mesa bullet \
48 util-linux-uuid"
49 TAGS="e enlightenment efl"
50 ;;
51 efl-dev)
52 copy @dev
53 DEPENDS="efl gstreamer0-dev gst0-plugins-base-dev check-dev \
54 util-linux-mount-dev util-linux-blkid-dev eudev-dev openssl-dev \
55 dbus-dev libjpeg-turbo-dev fribidi-dev giflib-dev tiff-dev \
56 libsndfile-dev lua-dev xorg-libXp-dev xorg-printproto \
57 xorg-scrnsaverproto xorg-libXScrnSaver-dev mesa-dev \
58 util-linux-uuid-dev libxml2-dev"
59 ;;
60 esac
61 }