mirror of
https://github.com/tstack/lnav
synced 2024-11-08 01:10:29 +00:00
31 lines
687 B
Bash
Executable File
31 lines
687 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
VERSION=$1
|
|
|
|
fpm --verbose \
|
|
-s zip \
|
|
-t rpm \
|
|
-n "lnav" \
|
|
-v "$VERSION" \
|
|
-p /vagrant/ \
|
|
-a native \
|
|
--url https://lnav.org \
|
|
-m 'timothyshanestack@gmail.com' \
|
|
--description 'A log file viewer and analyzer for the terminal' \
|
|
--license BSD-2-Clause \
|
|
--category 'System/Monitoring' \
|
|
/vagrant/lnav-linux.zip
|
|
|
|
fpm --verbose \
|
|
-s zip \
|
|
-t deb \
|
|
-n "lnav" \
|
|
-v "$VERSION" \
|
|
-p /vagrant/ \
|
|
-a native \
|
|
--url https://lnav.org \
|
|
-m 'timothyshanestack@gmail.com' \
|
|
--description 'A log file viewer and analyzer for the terminal' \
|
|
--license BSD-2-Clause \
|
|
/vagrant/lnav-linux.zip
|