wok-next view wayland/receipt @ rev 20443
The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Feb 24 16:17:33 2018 +0200 (2018-02-24) |
parents | db97269587e6 |
children | 10df65db91ad |
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="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://wayland.freedesktop.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/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="wayland-dev"
18 compile_rules() {
19 ./configure \
20 --prefix=/usr \
21 --disable-documentation \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 wayland)
29 copy @std
30 DEPENDS="expat libffi libxml2"
31 ;;
32 *-dev)
33 copy @dev
34 DEPENDS="wayland libffi-dev"
35 ;;
36 esac
37 }