aboutsummaryrefslogtreecommitdiff
path: root/plug/package.yaml
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2026-01-01 18:04:40 -0700
committerJosh Rahm <joshuarahm@gmail.com>2026-01-01 18:04:40 -0700
commit628174c992a5a740feb4dc119adf8dfb1f89f992 (patch)
tree683361b27cf4b6df2c5cc782d70de9bdf5fd38a8 /plug/package.yaml
parentbe1ef8cee5f68eb9afecca94071069a1ff82825e (diff)
downloadmontis-628174c992a5a740feb4dc119adf8dfb1f89f992.tar.gz
montis-628174c992a5a740feb4dc119adf8dfb1f89f992.tar.bz2
montis-628174c992a5a740feb4dc119adf8dfb1f89f992.zip
Have Meson orchestrate the whole build rather than stack.
As a part of this, I changed the file layout to: rt/ - the Montis runtime plug/ - the Montis plugin wlroots/ - wlroots
Diffstat (limited to 'plug/package.yaml')
-rw-r--r--plug/package.yaml86
1 files changed, 86 insertions, 0 deletions
diff --git a/plug/package.yaml b/plug/package.yaml
new file mode 100644
index 0000000..a9f29ae
--- /dev/null
+++ b/plug/package.yaml
@@ -0,0 +1,86 @@
+name: montis
+
+github: "jrahm/montis"
+license: BSD-3-Clause
+author: "Author name here"
+maintainer: "example@example.com"
+copyright: "2024 Author name here"
+
+extra-source-files:
+- README.md
+
+# Metadata used when publishing your package
+# synopsis: Short description of your package
+# category: Web
+
+# To avoid duplicated efforts in documentation and dealing with the
+# complications of embedding Haddock markup inside cabal files, it is
+# common to point users to the README.md file.
+description: Please see the README on GitHub at <https://github.com/githubuser/montis#readme>
+
+
+dependencies:
+- base >= 4.7 && < 5
+- mtl
+- bytestring
+- containers
+- data-default-class
+- transformers
+- monad-loops
+- singletons
+
+
+ghc-options:
+- -Wall
+- -Wcompat
+- -Widentities
+- -Wincomplete-record-updates
+- -Wincomplete-uni-patterns
+- -Wmissing-export-lists
+- -Wmissing-home-modules
+- -Wpartial-fields
+- -Wredundant-constraints
+- -XGHC2021
+- -XTypeFamilies
+- -XUndecidableInstances
+- -XGADTs
+- -XFunctionalDependencies
+- -XUndecidableSuperClasses
+- -XDefaultSignatures
+- -XViewPatterns
+- -XDerivingVia
+- -XDisambiguateRecordFields
+- -XLambdaCase
+- -XDataKinds
+- -fPIC
+
+executables:
+ montis.so:
+ main: Config.hs
+ source-dirs: src
+ c-sources: src/harness_adapter.c
+ ghc-options:
+ - -shared
+ - -dynamic
+ - -no-hs-main
+ - -lHSrts-1.0.2-ghc9.8.4
+ - -O3
+ cc-options:
+ - -g3
+ - -O2
+ - -shared
+ - -I../build/rt/
+ - -I../rt/include/
+ - -I../wlroots/include
+ - -DWLR_USE_UNSTABLE
+
+tests:
+ montis-test:
+ main: Spec.hs
+ source-dirs: test
+ ghc-options:
+ - -threaded
+ - -rtsopts
+ - -with-rtsopts=-N
+ dependencies:
+ - montis