• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

nkfのGitリポジトリのfork


コミットメタ情報

リビジョンef35fd1ad5d111900ae35577208b9ecd1fc4050b (tree)
日時2012-03-16 06:59:30
作者NARUSE, Yui <naruse@user...>
コミッターNARUSE, Yui

ログメッセージ

Fix .travis.yml to test perl and python.

変更サマリ

差分

--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,5 @@
1-script: "make test"
1+language: c
2+script: "make test && make perl && make python2"
23
34 branches:
45 only:
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,8 @@ RM = rm -rf
88 VERSION = 2.1.2
99 MKDIR = mkdir
1010 prefix = /usr/local
11+PYTHON2 = python
12+PYTHON3 = python
1113
1214 .PHONY: clean install test tar shar
1315
@@ -33,6 +35,14 @@ perl:
3335 make ; \
3436 make test )
3537
38+python2:
39+ ( cd NKF.python2 ; \
40+ $(PYTHON2) setup.py install )
41+
42+python3:
43+ ( cd NKF.python2 ; \
44+ $(PYTHON3) setup.py install )
45+
3646 install:
3747 -$(MKDIR) $(prefix)/bin
3848 -$(MKDIR) $(prefix)/man