https://github.com/weakish/teant
teant
https://github.com/weakish/teant
Last synced: 4 months ago
JSON representation
teant
- Host: GitHub
- URL: https://github.com/weakish/teant
- Owner: weakish
- License: other
- Created: 2017-07-22T03:20:18.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-22T03:23:46.000Z (almost 9 years ago)
- Last Synced: 2025-03-02T05:28:22.566Z (over 1 year ago)
- Language: Ceylon
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
teant
=====
I wrote teant to avoid writing Makefile for Ceylon projects.
Install
-------
Clone this repository:
git clone https://github.com/weakish/teant.git
cd teant
To install teant to `~/bin` with teant:
teant install
To install teant without teant:
ceylon compile
ceylon fat-jar $(ceylon version)
# on unix
mv io.github.weakish.teant-0.0.0.jar ~/bin/
echo '#!/bin/sh' > ~/bin/teant
echo 'java -jar ~/bin/io.github.weakish.teant-0.0.0.jar "$@"' >> ~/bin/teant
# on windows
mv io.github.weakish.teant-0.0.0.jar %HOME%\bin
echo '@echo off' > %HOME%\bin\teant.bat
echo 'java -jar %HOME%\io.github.weakish.teant-0.0.0.jar %*' >> %HOME%\bin\teant.bat
### Uninstall
#### On Unix
cd teant
teant uninstall
#### On Windows
del %HOME%\bin\io.github.weakish.teant-0.0.0.jar
del %HOME%\bin\teant.bat
Usage
-----
teant help
Doc
---
Naming
------
The name comes from tea (Ceylon) and ant (Java build tool).
License
-------
0BSD