alterdekim 13b4bda413 Attempt to make it alive.
modified:   .gitignore
	new file:   CHANGELOG.md
	new file:   LICENSE
	new file:   Porcelain.cabal
	renamed:    haskell/Lexer.hs -> app/Lexer.hs
	renamed:    haskell/Main.hs -> app/Main.hs
	renamed:    haskell/NewParser.hs -> app/NewParser.hs
	renamed:    haskell/Parser.hs -> app/Parser.hs
	new file:   as/test.as
	deleted:    asm/test
	deleted:    asm/test.asm
	deleted:    asm/test.o
	deleted:    haskell/Lexer.hi
	deleted:    haskell/Lexer.o
	deleted:    haskell/Main
	deleted:    haskell/Main.hi
	deleted:    haskell/Main.o
	deleted:    haskell/Parser.hi
	deleted:    haskell/Parser.o
2024-10-29 16:14:31 +03:00

28 lines
725 B
Plaintext

cabal-version: 3.0
name: Porcelain
version: 0.1.0.0
synopsis: A transpiler for ActionScript 3.0
-- description:
homepage: https://blog.awain.net
license: Apache-2.0
license-file: LICENSE
author: alterdekim
maintainer: alterwain@protonmail.com
-- copyright:
category: Language
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
executable Porcelain
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.17.2.1
hs-source-dirs: app
default-language: Haskell2010