void-packages/srcpkgs/plymouth/template
Đoàn Trần Công Danh ebf92c34d5 plymouth: remove noarch
2020-11-29 08:30:22 +07:00

56 lines
1.6 KiB
Bash

# Template file for 'plymouth'
pkgname=plymouth
version=0.9.4
revision=2
build_style=gnu-configure
configure_args="--with-system-root-install=no \
--without-rhgb-compat-link --enable-systemd-integration=no \
--enable-gdm-transition $(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"
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=4a197a4f1a05785d7453dd829b231352fb2d09171bd86c5ffaafbb2dd6791351
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
}
}