Skip to content

Commit 042f3a9

Browse files
Merge pull request #39 from dreamer-coding/change_name
2 parents 9e6cc95 + 0e682c4 commit 042f3a9

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,30 +33,30 @@ To get started, ensure you have the following installed:
3333

3434
#### Adding via Meson Git Wrap
3535

36-
To add a git-wrap, place a `.wrap` file in `subprojects` with the Git repo URL and revision, then use `dependency('fossil-jellyfish')` in `meson.build` so Meson can fetch and build it automatically.
36+
To add a git-wrap, place a `.wrap` file in `subprojects` with the Git repo URL and revision, then use `dependency('fossil-ai')` in `meson.build` so Meson can fetch and build it automatically.
3737

3838
#### Adding via Conan GitHub repository
3939

4040
packages directly from a GitHub repository if it contains a valid `conanfile.py`.
4141

4242
```bash
43-
conan install git+https://github.com/fossillogic/fossil-jellyfish.git#v0.1.4 --name fossil_jellyfish --build=missing
43+
conan install git+https://github.com/fossillogic/fossil-ai.git#v0.1.4 --name fossil_ai --build=missing
4444
```
4545

4646
#### Integrate the Dependency:
4747

48-
Add the `fossil-jellyfish.wrap` file in your `subprojects` directory and include the following content:
48+
Add the `fossil-ai.wrap` file in your `subprojects` directory and include the following content:
4949

5050
```ini
5151
[wrap-git]
52-
url = https://github.com/fossillogic/fossil-jellyfish.git
52+
url = https://github.com/fossillogic/fossil-ai.git
5353
revision = v0.1.4
5454

5555
[provide]
56-
dependency_names = fossil-jellyfish
56+
dependency_names = fossil-ai
5757
```
5858

59-
**Note**: For the best experience, always use the latest releases. Visit the [releases](https://github.com/fossillogic/fossil-jellyfish/releases) page for the latest versions.
59+
**Note**: For the best experience, always use the latest releases. Visit the [releases](https://github.com/fossillogic/fossil-ai/releases) page for the latest versions.
6060

6161
## Configure Options
6262

code/logic/meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ else
88
winsock_dep = []
99
endif
1010

11-
fossil_fish_lib = library('fossil_jellyfish',
11+
fossil_ai_lib = library('fossil_ai',
1212
files('jellyfish.c', 'iochat.c', 'language.c'),
1313
install: true,
1414
dependencies: [cc.find_library('m', required: false), winsock_dep],
1515
include_directories: dir)
1616

17-
fossil_fish_dep = declare_dependency(
18-
link_with: [fossil_fish_lib],
17+
fossil_ai_dep = declare_dependency(
18+
link_with: [fossil_ai_lib],
1919
include_directories: dir)
2020

21-
meson.override_dependency('fossil-jellyfish', fossil_jellyfish_dep)
21+
meson.override_dependency('fossil-ai', fossil_ai_dep)

code/tests/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if get_option('with_test').enabled()
55
test_cases = ['unit_runner.c', cards.stdout().strip().split('\n')]
66

77
pizza_c = executable('pizza', test_cases, include_directories: dir,
8-
dependencies: [dependency('fossil-test'), fossil_fish_dep])
8+
dependencies: [dependency('fossil-test'), fossil_ai_dep])
99

1010
test('fossil testing C', pizza_c)
1111
endif

conanfile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
from conan.tools.files import copy
44
import os
55

6-
class FossilJellyfishConan(ConanFile):
7-
name = "fossil_jellyfish"
6+
class FossilAiConan(ConanFile):
7+
name = "fossil_ai"
88
version = "0.1.4"
99
license = "MPL-2.0"
1010
author = "Fossil Logic <[email protected]>"
11-
url = "https://github.com/fossillogic/fossil-jellyfish"
11+
url = "https://github.com/fossillogic/fossil-ai"
1212
description = "Fossil Jellyfish is a lightweight, portable Truthful Intelligence and AI library written in pure C with zero external dependencies."
1313
topics = ("c", "ti", "chat", "nlp", "cpp", "meson", "conan-recipe", "mesonbuild", "ninja-build")
1414

@@ -50,7 +50,7 @@ def package(self):
5050

5151
def package_info(self):
5252
"""Set information for consumers of the package"""
53-
self.cpp_info.libs = ["fossil_jellyfish"]
53+
self.cpp_info.libs = ["fossil_ai"]
5454
self.cpp_info.includedirs = ["include"]
5555

5656
def source(self):

0 commit comments

Comments
 (0)