blob: 8e88e2b9cc275ff8c781021632d932d184272f8a (
plain)
1 # Description: Seahorse is a GNOME application for managing encryption keys and passwords in the GNOME Keyring
2 # URL: https://wiki.gnome.org/Apps/Seahorse/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: gcr gnome-keyring gpgme libhandy libpwquality libsecret libsoup openldap xorg-libxinerama
5 # Optional: pam_ldap
6
7 name=seahorse
8 version=40.0
9 release=1
10 source=(https://gitlab.gnome.org/GNOME/seahorse/-/archive/$version/seahorse-$version.tar.bz2)
11
12 build() {
13 meson setup $name-$version build \
14 --prefix=/usr \
15 --libexecdir=/usr/lib/$name \
16 --buildtype=plain \
17 -D help=false \
18 -D key-sharing=false
19 meson compile -C build
20 DESTDIR=$PKG meson install -C build
21 rm -r $PKG/usr/share/locale
22 }
|