diff options
author | Aylur <[email protected]> | 2024-05-21 12:56:58 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-05-21 12:56:58 +0200 |
commit | 5929e35962914331704f88dc45e8b96b30d1448b (patch) | |
tree | fe8b96dfbe21b95cb74368917e4aa7f9b87e1259 | |
parent | cbe86c0352a81b83c1f6f8d738482b6f756d45b5 (diff) |
fix introspection
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | flake.nix | 4 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | src/meson.build | 8 |
4 files changed, 9 insertions, 7 deletions
@@ -1,6 +1,6 @@ # notifd -a notification daemon +A notification daemon library and cli tool ## TODO @@ -1,4 +1,6 @@ { + description = "Notification daemon library and cli tool"; + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; outputs = { self, nixpkgs }: @@ -28,7 +30,7 @@ pname = "notifd"; version = version; src = ./.; - # outputs = ["out" "dev"]; + outputs = ["out" "dev"]; }; }; diff --git a/meson.build b/meson.build index e85fbc5..17ba93e 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project( - 'notifd', + 'astal-notifd', 'vala', 'c', version: run_command('cat', join_paths(meson.project_source_root(), 'version')).stdout().strip(), diff --git a/src/meson.build b/src/meson.build index c1d8c5e..e965647 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1,8 +1,8 @@ version_split = meson.project_version().split('.') api_version = version_split[0] + '.' + version_split[1] -notifd_gir = 'astal_notifd-' + api_version + '.gir' -notifd_typelib = 'astal_notifd-' + api_version + '.typelib' -notifd_so = 'libastalnotifd.so.' + meson.project_version() +notifd_gir = 'AstalNotifd-' + api_version + '.gir' +notifd_typelib = 'AstalNotifd-' + api_version + '.typelib' +notifd_so = 'libastal-notifd.so.' + meson.project_version() deps = [ dependency('glib-2.0'), @@ -32,7 +32,7 @@ libnotifd = library( ) import('pkgconfig').generate( - description: 'libastalnotifd', + description: 'libastal-notifd', libraries: libnotifd, name: meson.project_name(), filebase: meson.project_name() + '-' + api_version, |