55 lines
1.6 KiB
Bash
55 lines
1.6 KiB
Bash
# Template file for 'plymouth'
|
|
pkgname=plymouth
|
|
version=0.9.5
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-system-root-install=no \
|
|
--without-rhgb-compat-link --enable-systemd-integration=no \
|
|
$(vopt_enable gtk3 gtk) $(vopt_enable pango) \
|
|
--with-logo=/usr/share/void-artwork/void-transparent.png --localstatedir=/ \
|
|
--disable-documentation"
|
|
conf_files="/etc/plymouth/plymouthd.conf"
|
|
hostmakedepends="pkg-config gettext"
|
|
makedepends="libdrm-devel libpng-devel void-artwork
|
|
$(vopt_if gtk3 gtk+3-devel) $(vopt_if pango pango-devel)"
|
|
depends="plymouth-data>=0"
|
|
short_desc="Graphical boot animation and logger"
|
|
maintainer="William OD <obirik2005@gmail.com>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://www.freedesktop.org/wiki/Software/Plymouth/"
|
|
distfiles="${FREEDESKTOP_SITE}/plymouth/releases/$pkgname-$version.tar.xz"
|
|
checksum=ecae257f351d098340542a5bc06de029404c24dcee87e6ebb2abd5ef117fce86
|
|
|
|
build_options="gtk3 pango"
|
|
build_options_default="gtk3 pango"
|
|
desc_option_pango="Enable building with Pango (for password/question prompts)"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) makedepends+=" musl-rpmatch-devel"
|
|
LDFLAGS="-lrpmatch"
|
|
;;
|
|
esac
|
|
|
|
post_install() {
|
|
vinstall ${FILESDIR}/71-plymouth-seat.rules 644 usr/lib/udev/rules.d/
|
|
}
|
|
|
|
plymouth-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/*.la
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/plymouth/*.la
|
|
}
|
|
}
|
|
|
|
plymouth-data_package() {
|
|
short_desc+=" - data files"
|
|
depends="void-artwork"
|
|
pkg_install() {
|
|
vmove usr/share/plymouth/themes
|
|
}
|
|
}
|