blob: 0afae4dcb67f9896255533818f5a041e4d0da09a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
rm -f tpls/*~
r7r-plugin-packer \
--output=custom_translation.rpk \
--codefile=plugin.php \
--classname=custom_translation \
--pluginname=custom_translation \
--author='Laria Carolin Chabowski <laria@laria.me>' \
--versiontext="0.5.1" \
--versioncount=4 \
--api=5 \
--shortdesc="Your own translations, so you can easilly internationalize your templates!" \
--helpfile=help.html \
--licensefile=COPYING \
--tpldir=tpls
|