wok-next view efl/receipt @ rev 19943

Up xine-lib (1.2.8)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 16 10:16:55 2017 +0200 (2017-10-16)
parents da30720c01f0
children 8c1b5830f802
line source
1 # SliTaz package receipt.
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/rel/libs/$PACKAGE/$TARBALL"
12 TAGS="e enlightenment efl"
14 DEPENDS="gstreamer0 gst0-plugins-base
15 util-linux-mount util-linux-blkid udev openssl dbus
16 libjpeg fribidi giflib tiff libsndfile lua
17 xorg-libXp xorg-libXScrnSaver mesa bullet util-linux-uuid"
19 BUILD_DEPENDS="gstreamer0-dev gst0-plugins-base-dev check-dev
20 util-linux-mount-dev util-linux-blkid-dev udev-dev openssl-dev dbus-dev
21 jpeg-dev fribidi-dev giflib-dev tiff-dev libsndfile-dev lua-dev
22 xorg-libXp-dev xorg-printproto xorg-scrnsaverproto xorg-libXScrnSaver-dev
23 xorg-libXcursor-dev xorg-libXcomposite-dev xorg-libXinerama-dev
24 xorg-libXrandr-dev xorg-libXtst-dev mesa-dev util-linux-uuid-dev libxml2-dev
25 flac-dev autoconf automake expat-dev xorg-libxshmfence-dev"
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 sed -i 's/DGifCloseFile([^)]*/&,NULL/' \
31 src/modules/evas/loaders/gif/evas_image_load_gif.c
32 autoreconf -v &&
33 ac_aux_dir=$src ./configure \
34 --disable-static \
35 --disable-doc \
36 --disable-pulseaudio \
37 --disable-physics \
38 $CONFIGURE_ARGS &&
39 make && make -j1 install DESTDIR=$install
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 mkdir -p $fs/usr/lib
46 cp -a $install/usr/bin $fs/usr
47 cp -a $install/usr/lib/*.so* $fs/usr/lib
48 cp -a $install/usr/lib/e* $fs/usr/lib
49 cp -a $install/usr/share $fs/usr/
50 rm -rf $fs/usr/share/mime
51 }