wok view plymouth/receipt @ rev 23437

updated plymouth again (0.8.6.1 -> 0.9.4)
author Hans-G?nter Theisgen
date Thu Apr 02 08:17:21 2020 +0100 (2020-04-02)
parents 3cd60eea4558
children 2d9006b21be0
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+3 libdrm libpng pango xorg-libpciaccess"
15 BUILD_DEPENDS="gtk+3-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 --without-udev \
28 --disable-documentation \
29 --disable-libdrm_nouveau \
30 --disable-systemd-integration \
31 $CONFIGURE_ARGS &&
32 make &&
33 make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/lib $fs/usr/lib
40 mkdir -p $fs/usr/share
42 cp -a $install/bin $fs
43 cp -a $install/etc $fs
44 cp -a $install/sbin $fs
45 cp -a $install/lib/*.so* $fs/lib
46 cp -a $install/usr/bin $fs/usr
47 cp -a $install/usr/sbin $fs/usr
48 cp -a $install/usr/lib/*.so* $fs/usr/lib
49 cp -a $install/usr/lib/plymouth $fs/usr/lib
51 rm $fs/usr/lib/plymouth/*.*a
52 rm $fs/usr/lib/plymouth/*/*.*a
53 }