wok-current 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 | 58618839aa9c |
children | 3cd60eea4558 |
files | plymouth/receipt |
line diff
1.1 --- a/plymouth/receipt Thu Apr 02 07:08:52 2020 +0100 1.2 +++ b/plymouth/receipt Thu Apr 02 08:03:08 2020 +0100 1.3 @@ -1,48 +1,52 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="plymouth" 1.7 -VERSION="0.8.6.1" 1.8 +VERSION="0.9.4" 1.9 CATEGORY="base-system" 1.10 SHORT_DESC="A graphical boot splash screen with KMS support." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="GPL2" 1.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 -WEB_SITE="http://www.freedesktop.org/wiki/Software/Plymouth" 1.15 -WGET_URL="http://www.freedesktop.org/software/plymouth/releases/$TARBALL" 1.16 +WEB_SITE="https://www.freedesktop.org/wiki/Software/Plymouth/" 1.17 1.18 -DEPENDS="libpng pango gtk+ xorg-libpciaccess libdrm" 1.19 -BUILD_DEPENDS="libpng-dev pango-dev gtk+-dev xorg-libpciaccess-dev libdrm-dev" 1.20 +TARBALL="$PACKAGE-$VERSION.tar.xz" 1.21 +WGET_URL="https://www.freedesktop.org/software/plymouth/releases/$TARBALL" 1.22 + 1.23 +DEPENDS="gtk+ libdrm libpng pango xorg-libpciaccess" 1.24 +BUILD_DEPENDS="gtk+-dev libdrm-dev libpng-dev pango-dev xorg-libpciaccess-dev" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - cd $src 1.30 - ./configure \ 1.31 - --sysconfdir=/etc \ 1.32 - --localstatedir=/var \ 1.33 - --libexecdir=/usr/lib \ 1.34 - --with-system-root-install \ 1.35 - --with-log-viewer \ 1.36 - --with-release-file=/etc/slitaz-release \ 1.37 - --disable-libdrm_nouveau \ 1.38 + ./configure \ 1.39 + --sysconfdir=/etc \ 1.40 + --localstatedir=/var \ 1.41 + --libexecdir=/usr/lib \ 1.42 + --with-system-root-install \ 1.43 + --with-log-viewer \ 1.44 + --with-release-file=/etc/slitaz-release \ 1.45 + --disable-documentation \ 1.46 + --disable-libdrm_nouveau \ 1.47 + --disable-systemd-integration \ 1.48 $CONFIGURE_ARGS && 1.49 - make && make install 1.50 + make && 1.51 + make install 1.52 } 1.53 1.54 # Rules to gen a SliTaz package suitable for Tazpkg. 1.55 genpkg_rules() 1.56 { 1.57 - mkdir -p $fs/lib $fs/usr/lib $fs/usr/share 1.58 - cp -a $install/bin $fs 1.59 - cp -a $install/etc $fs 1.60 - cp -a $install/sbin $fs 1.61 - cp -a $install/lib/*.so* $fs/lib 1.62 - cp -a $install/usr/bin $fs/usr 1.63 - cp -a $install/usr/sbin $fs/usr 1.64 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.65 - cp -a $install/usr/lib/plymouth $fs/usr/lib 1.66 - rm $fs/usr/lib/plymouth/*.*a 1.67 - rm $fs/usr/lib/plymouth/*/*.*a 1.68 + mkdir -p $fs/lib $fs/usr/lib 1.69 + mkdir -p $fs/usr/share 1.70 + 1.71 + cp -a $install/bin $fs 1.72 + cp -a $install/etc $fs 1.73 + cp -a $install/sbin $fs 1.74 + cp -a $install/lib/*.so* $fs/lib 1.75 + cp -a $install/usr/bin $fs/usr 1.76 + cp -a $install/usr/sbin $fs/usr 1.77 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.78 + cp -a $install/usr/lib/plymouth $fs/usr/lib 1.79 + 1.80 + rm $fs/usr/lib/plymouth/*.*a 1.81 + rm $fs/usr/lib/plymouth/*/*.*a 1.82 } 1.83 - 1.84 -