blob: 188eeea61edb091491d584f0191d586acd8fb1e4 (
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=atom_feed.rpk \
--codefile=plugin.php \
--classname=atom_feed \
--pluginname=atom_feed \
--author='Laria Carolin Chabowski <laria@laria.me>' \
--versiontext="0.5.2" \
--versioncount=5 \
--api=5 \
--shortdesc="Power up your website with some Atom Feeds!" \
--helpfile=help.html \
--licensefile=COPYING \
--tpldir=tpls
|