This repository was archived by the owner on Jul 19, 2024. It is now read-only.
File tree 2 files changed +18
-6
lines changed
2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,15 @@ before_install:
4
4
- sudo apt-get -qq update
5
5
- sudo apt-get install -qq libncurses-dev
6
6
- sudo apt-get install -qq libslang2-dev
7
- - sudo apt-get install -qq libpcre3-dev
8
- - sudo apt-get install -qq zlib1g-dev
7
+ - sudo apt-get install -qq libpcre3-dev
8
+ - sudo apt-get install -qq zlib1g-dev
9
9
- sudo apt-get install -qq unzip
10
- install :
10
+ install :
11
11
- wget https://downloads.sourceforge.net/harbour-project/source/3.0.0/harbour-3.0.0.tar.bz2 -O /tmp/harbour-3.0.0.tar.bz2
12
12
- cd /tmp && tar -xvjf harbour-3.0.0.tar.bz2 && cd -
13
13
- cd /tmp/harbour-3.0.0 && HB_INSTALL_PREFIX=/usr/local HB_BUILD_3RDEXT=no HB_BUILD_CONTRIBS=xhb make && cd -
14
14
- cd /tmp/harbour-3.0.0 && sudo make install && cd -
15
15
- sudo ldconfig -f /usr/local/etc/ld.so.conf.d/harbour.conf
16
- script :
17
- - hbmk2 ./lib.hbp
18
- - hbmk2 -run ./tests.hbp
16
+ script :
17
+ - make
18
+ - make test
Original file line number Diff line number Diff line change
1
+ .PHONY : all build test clean
2
+
3
+ all : build
4
+
5
+ build :
6
+ hbmk2 lib.hbp
7
+
8
+ test :
9
+ hbmk2 -run tests.hbp
10
+
11
+ clean :
12
+ rm libhbunit.*
You can’t perform that action at this time.
0 commit comments