wok view plymouth/receipt @ rev 23435

updated plymouth (0.8.6.1 -> 0.9.4)
author Hans-G?nter Theisgen
date Thu Apr 02 08:03:08 2020 +0100 (2020-04-02)
parents 03b2309fd335
children 3cd60eea4558
line source
1 # SliTaz package receipt.
3 PACKAGE="plymouth"
4 VERSION="0.9.4"
5 CATEGORY="base-system"
6 SHORT_DESC="A graphical boot splash screen with KMS support."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/Plymouth/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.freedesktop.org/software/plymouth/releases/$TARBALL"
14 DEPENDS="gtk+ libdrm libpng pango xorg-libpciaccess"
15 BUILD_DEPENDS="gtk+-dev libdrm-dev libpng-dev pango-dev xorg-libpciaccess-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 --libexecdir=/usr/lib \
24 --with-system-root-install \
25 --with-log-viewer \
26 --with-release-file=/etc/slitaz-release \
27 --disable-documentation \
28 --disable-libdrm_nouveau \
29 --disable-systemd-integration \
30 $CONFIGURE_ARGS &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/lib $fs/usr/lib
39 mkdir -p $fs/usr/share
41 cp -a $install/bin $fs
42 cp -a $install/etc $fs
43 cp -a $install/sbin $fs
44 cp -a $install/lib/*.so* $fs/lib
45 cp -a $install/usr/bin $fs/usr
46 cp -a $install/usr/sbin $fs/usr
47 cp -a $install/usr/lib/*.so* $fs/usr/lib
48 cp -a $install/usr/lib/plymouth $fs/usr/lib
50 rm $fs/usr/lib/plymouth/*.*a
51 rm $fs/usr/lib/plymouth/*/*.*a
52 }