grim/purple-spasm

Cleanup the readme situation a bit

2020-04-19, Gary Kramlich
81c423d0d699
Parents b4552380809e
Children e5f8de7d1827
Cleanup the readme situation a bit
--- a/README.md Sun Apr 19 05:09:03 2020 -0500
+++ b/README.md Sun Apr 19 05:10:24 2020 -0500
@@ -1,5 +1,6 @@
-# skeleton-libpurple
+# purple-spasm
-This is a skeleton repo to make it easier to create libpurple plugins.
+This plugin is very much a work in progress!!
-For more information please see [README.skeleton.md](README.skeleton.md).
+Purple-spasm is a plugin for libpurple to allow you to connect to twitch.tv.
+
--- a/README.skeleton.md Sun Apr 19 05:09:03 2020 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,46 +0,0 @@
-# skeleton-libpurple
-
-This repository is a starting point for writing libpurple plugins.
-
-You can fork it and use its build system to build your own custom plugin immediately. By forking this repo you can easily pull in updates to it too!
-
-## Getting Started
-
-This plugin uses the [Meson build system](https://mesonbuild.com/). It is currently set up for simple plugins where all you need to do is make a few changes.
-
-Below is the top of the stock `meson.build`.
-
- project(
- 'skeleton-libpurple',
- 'c',
- version: '0.1.0',
- )
-
- SOURCES = [
- 'hello-world.c',
- ]
-
-You should change `skeleton-libpurple` and `version` in the call to `project()` to match the name and version of your plugin respectively.
-
-Next you'll need to set the `SOURCES` variable to the list of files in your plugin.
-
-Once that's done you can move on to the usage section.
-
-## Usage
-
-Once your `meson.build` file is good to go, you can generate your build system with `meson build`. This will generate your build system in a directory named build in the current directory.
-
-To now run the build you can run `ninja -C build` or if you prefer:
-
- cd build
- ninja
-
-If everything built fine, you can use `ninja install` to install the plugin so that your libpurple client can use it.
-
-If you ever want to uninstall the plugin, you can type `ninja uninstall`.
-
-While developing your build will become incremental automatically, so if you want to build from scratch, you can use `ninja clean` to remove the intermediate files.
-
-## Support
-
-If you're having issues with this repository, please open an issue in the Bitbucket project.