diff options
author | John Turner <jturner.usa+gentoo@gmail.com> | 2025-07-24 12:36:23 -0400 |
---|---|---|
committer | John Turner <jturner.usa+gentoo@gmail.com> | 2025-07-24 12:36:23 -0400 |
commit | e8f42ccd2c85db9ea6cd7e87215ba7a20c32259a (patch) | |
tree | 96663f3eaa3f388f48e1f0edbe78986cc67e8cea /sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild | |
parent | 43dcb49e04d69a56a517123bb41a6f4e5b78eb54 (diff) | |
download | ebuilds-e8f42ccd2c85db9ea6cd7e87215ba7a20c32259a.tar.gz |
add pam_xdg and sqlitecpp
Diffstat (limited to 'sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild')
-rw-r--r-- | sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild b/sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild new file mode 100644 index 0000000..5af5d68 --- /dev/null +++ b/sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="A pam module to create XDG runtime directories." +HOMEPAGE="https://jturnerusa.dev/gitweb/?p=pam_xdg;a=summary" +HASH="432cd2fe2f2e33b2cc8bec60246ea59b7e2210f9" +SRC_URI="https://jturnerusa.dev/gitweb/?p=pam_xdg;a=snapshot;h=${HASH};sf=tgz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-432cd2f" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-cpp/sqlitecpp" +RDEPEND="${DEPEND}" + +src_configure() { + local emesonargs=(--prefix=/ --libdir=$(get_libdir)) + meson_src_configure +} |