Commit df1f51ea authored by Michael Chernigin's avatar Michael Chernigin Committed by Vitaly Lipatov

epm play: add min

parent 2062db23
#!/bin/sh
PKGNAME=min
SUPPORTEDARCHES="x86_64 aarch64 armhf"
VERSION="$2"
DESCRIPTION="A fast, minimal browser that protects your privacy"
URL="https://github.com/minbrowser/min"
. $(dirname $0)/common.sh
arch="$(epm print info -a)"
case "$arch" in
x86_64)
file="min-${VERSION}-amd64.deb"
;;
aarch64)
file="min-${VERSION}-arm64.deb"
;;
armhf)
file="min-${VERSION}-armv7l.deb"
;;
*)
fatal "$arch arch is not supported"
;;
esac
PKGURL="$(eget --list --latest "${URL}"/releases "${file}")"
install_pkgurl
#!/bin/sh -x
# It will be run with two args: buildroot spec
BUILDROOT="$1"
SPEC="$2"
PRODUCT=min
PRODUCTCUR=Min
PRODUCTDIR=/opt/$PRODUCT
. $(dirname $0)/common-chromium-browser.sh
cleanup
add_chromium_deps
fix_chrome_sandbox
fix_desktop_file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment