Skip to content

Commit 1649241

Browse files
committed
Merge pull request #13 from 1100110/master
Cleaned up the README and set up CI with travis.
2 parents 087c009 + 23635b0 commit 1649241

File tree

6 files changed

+28
-19
lines changed

6 files changed

+28
-19
lines changed

.main.d

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import std.stdio; void main() { writeln("here's a main function, cause this is stupid."); }
2+

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
before_install:
2+
- sudo wget https://d-apt.googlecode.com/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list
3+
- sudo apt-get update && sudo apt-get -y --allow-unauthenticated install d-apt-keyring && sudo apt-get update
4+
- sudo apt-get install dub dmd
5+
6+
script:
7+
cp .main.d ./deimos/ncurses/main.d && dub
8+

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Jon "ylixir" Allen, [email protected]
22
Dejan Lekic, dejan.lekic @ (gmail.com || kcl.ac.uk)
3-
Jude "1100110" Young, 10equals2@gmail.com
3+
Jude "1100110" Young, 0b1100110@gmail.com

README

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Ncurses
2+
=======
3+
[![Build Status](https://travis-ci.org/1100110/ncurses.png?branch=master)](https://travis-ci.org/1100110/ncurses)
4+
5+
6+
This is currently in BETA.
7+
--------------------------
8+
There will be bugs. C Macros are missing, enums are slightly renamed.
9+
If you have any trouble, or think that something should be fixed,
10+
then please create a bug report.
11+
12+
WARNINGS & PRECAUTIONS
13+
----------------------
14+
What files make up the 'official' ncurses package?

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@
1313
],
1414
"libs": [
1515
"ncursesw"
16-
]
16+
],
17+
"targetType": "staticLibrary",
18+
"buildRequirements": ["relaxProperties"],
1719
}

0 commit comments

Comments
 (0)