2020-06-15 09:43:30 +00:00
|
|
|
# Description: Seahorse is a GNOME application for managing encryption keys and passwords in the GNOME Keyring
|
|
|
|
# URL: https://wiki.gnome.org/Apps/Seahorse/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-06-17 07:35:38 +00:00
|
|
|
# Depends on: gcr gnome-keyring gpgme libhandy libpwquality libsecret libsoup openldap xorg-libxinerama
|
2020-06-15 09:43:30 +00:00
|
|
|
# Optional: pam_ldap
|
|
|
|
|
|
|
|
name=seahorse
|
2021-04-12 19:44:37 +00:00
|
|
|
version=40.0
|
2020-06-15 09:43:30 +00:00
|
|
|
release=1
|
|
|
|
source=(https://gitlab.gnome.org/GNOME/seahorse/-/archive/$version/seahorse-$version.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
2020-11-03 20:51:33 +00:00
|
|
|
meson setup $name-$version build \
|
2020-06-15 09:43:30 +00:00
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/$name \
|
2020-11-03 20:51:33 +00:00
|
|
|
--buildtype=plain \
|
2020-11-08 13:53:50 +00:00
|
|
|
-D help=false \
|
|
|
|
-D key-sharing=false
|
2020-11-03 20:51:33 +00:00
|
|
|
meson compile -C build
|
2020-06-15 09:43:30 +00:00
|
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
|
|
}
|