Browse Source

php7.4 zip

jqh 5 years ago
parent
commit
339bade731
1 changed files with 3 additions and 2 deletions
  1. 3 2
      .travis.yml

+ 3 - 2
.travis.yml

@@ -21,8 +21,9 @@ install:
   - wget https://libzip.org/download/libzip-1.6.1.tar.gz
   - tar -zxvf libzip-1.6.1.tar.gz
   - cd libzip-1.6.1
-  - cmake && make && make install
-  - cd ..
+  - mkdir build && cd build && cmake ..
+  - make && make install
+  - cd ../..
   - wget https://pecl.php.net/get/zip-1.18.2.tgz
   - tar -zxvf zip-1.18.2.tgz
   - cd zip-1.18.2 && phpize clean && phpize && ./configure && make clean && make && make install