wok-next view wayland/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents f48456621a9d
children d01953cd12ed
line source
1 # SliTaz package receipt v2.
3 PACKAGE="wayland"
4 VERSION="1.14.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Wayland simpler X display server protocol"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://wayland.freedesktop.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/wayland.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="http://wayland.freedesktop.org/releases/$TARBALL"
15 BUILD_DEPENDS="libffi-dev expat-dev libxml2-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 --disable-documentation \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 wayland)
31 copy @std
32 DEPENDS="expat libffi libxml2"
33 ;;
34 *-dev)
35 copy @dev
36 ;;
37 esac
38 }