Skip to content

Commit 0157641

Browse files
committed
Merge pull request #14 from 1100110/master
Minor fixes.
2 parents 1649241 + 72e9bf2 commit 0157641

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.o
2+
*.so
3+
*.a
4+

.main.d

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

.travis.yml

100644100755
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
before_install:
22
- sudo wget https://d-apt.googlecode.com/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list
33
- 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
4+
- sudo apt-get install dmd libncursesw5
55

66
script:
7-
cp .main.d ./deimos/ncurses/main.d && dub
8-
7+
dmd -lib -L-lncursesw -oflibncurses-d deimos/ncurses/curses.d deimos/ncurses/eti.d deimos/ncurses/form.d deimos/ncurses/menu.d deimos/ncurses/ncurses.d deimos/ncurses/panel.d deimos/ncurses/unctrl.d

package.json

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
2-
"name": "ncurses",
3-
"description": "Interface to the C ncurses library",
4-
"homepage": "http://github.com/D-Programming-Deimos/ncurses",
2+
"name": "ncurses",
3+
"description": "Interface to the C ncurses library",
4+
"homepage": "http://github.com/D-Programming-Deimos/ncurses",
55
"authors": [
6-
"Jon \"ylixir\" Allen",
7-
"Dejan Lekic",
8-
"Jude \"1100110\" Young"
6+
"Jon \"ylixir\" Allen",
7+
"Dejan Lekic",
8+
"Jude \"1100110\" Young"
99
],
10-
"license": "ncurses",
10+
"license": "ncurses",
1111
"sourcePaths": [
12-
"deimos"
12+
"deimos"
1313
],
1414
"libs": [
15-
"ncursesw"
15+
"ncursesw"
1616
],
17-
"targetType": "staticLibrary",
18-
"buildRequirements": ["relaxProperties"],
17+
"targetType": "staticLibrary",
18+
"targetName": "ncurses-d",
19+
"buildRequirements": [
20+
"relaxProperties"
21+
],
1922
}

0 commit comments

Comments
 (0)