Update exiv2 shlibs

This commit is contained in:
KF-Art 2023-11-19 21:04:55 -05:00
parent e949ccbda9
commit 3fb441f181
3 changed files with 1 additions and 35 deletions

View file

@ -555,7 +555,7 @@ libgimpcolor-2.0.so.0 libgimp-2.10.0_1
libgimpmodule-2.0.so.0 libgimp-2.10.0_1
libgmic.so.3 gmic-3.1.6_1
libcgmic.so.3 gmic-3.1.6_1
libexiv2.so.27 exiv2-0.27_1
libexiv2.so.28 exiv2-0.28_1
libKF5Holidays.so.5 kholidays-5.47.0_1
libPhabricatorHelpers.so.5 purpose-5.48.0_1
libKF5PurposeWidgets.so.5 purpose-5.48.0_1

View file

@ -1 +0,0 @@
Customize configuration at /etc/runas.yml

View file

@ -1,33 +0,0 @@
# Template file for 'runas'
pkgname=runas
version=2021.01.31
revision=2
archs="x86_64 x86_64-musl i686"
conf_files="/etc/runas.yml"
repository="cereus-extra"
build_style=cargo
hostmakedepends="git"
short_desc="An alternative to sudo and doas written in Rust"
maintainer="Kevin F. <kevinfigueroart@proton.me>"
license="GPL-3.0-or-later"
homepage="https://github.com/keyboard-slayer/runas"
do_fetch() {
git clone ${homepage} ${wrksrc}
}
do_install() {
if [ "$XBPS_TARGET_MACHINE" = "x86_64-musl" ]; then
vbin target/x86_64-unknown-linux-musl/release/runas
elif [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
vbin target/x86_64-unknown-linux-gnu/release/runas
elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
vbin target/i686-unknown-linux-gnu/release/runas
fi
}
post_install() {
vlicense LICENSE
cat src/runas.yml | head -n +5 | tee src/runas.yml
vinstall src/runas.yml 644 etc/
}