Backport more tools

This commit is contained in:
cytopia
2022-12-09 11:12:08 +01:00
parent c3628171f1
commit 30c3118a22
21 changed files with 386 additions and 196 deletions

View File

@@ -1,6 +1,6 @@
---
check: laravel --version | grep version | grep -E '[0-9]\.[0-9]+' || (laravel --version; false)
check: laravel --version | grep ^Laravel | grep -E '[0-9]\.[0-9]+' || (laravel --version; false)
all:
type: composer

View File

@@ -3,7 +3,7 @@
check: |
echo test > test.txt \
&& mutool create -o test.pdf test.txt \
&& file test.pdf | gre 'PDF document' \
&& file test.pdf | grep 'PDF document' \
&& rm test.txt \
&& rm test.pdf \

7
php_tools/vim/README.md Normal file
View File

@@ -0,0 +1,7 @@
# Vim
Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient.
| Platform | Url |
|----------|------------------------------------------------------------------|
| Website | https://www.vim.org/ |

View File

@@ -0,0 +1,7 @@
---
check: vim --version | grep ^VIM | grep -E '[0-9]\.[0-9]+' || (vim --version; false)
all:
type: apt
package: vim

11
php_tools/vim/options.yml Normal file
View File

@@ -0,0 +1,11 @@
---
# The name of the module
name: vim
# Exclude module build/installation for the following PHP versions
exclude: []
# In order for this tool to build/install correctly,
# the following tools must have been installed first.
depends: []