-
-
Save jtraub/1f51523c050526025f5e6ac53077fd0f to your computer and use it in GitHub Desktop.
responsively-bin PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com> | |
_pkgname='responsively-app' | |
_upkgname='ResponsivelyApp' | |
pkgname=responsively-bin | |
pkgver=0.19.0 | |
pkgrel=1 | |
pkgdesc="A modified web browser that helps in responsive web development. A web developer's must have dev-tool" | |
arch=('x86_64') | |
url='https://responsively.app' | |
license=('AGPL3') | |
provides=('responsively') | |
depends=('alsa-lib' 'gtk3' 'nss' 'libxss') | |
options=('!strip') | |
source=("${pkgname}-${pkgver}.rpm::https://github.com/responsively-org/responsively-app/releases/download/v${pkgver}/Responsively-App-${pkgver}.x86_64.rpm") | |
sha256sums=('ef84a9b3de7c56d5dfafc6aefed5df3226ae408866b7dcdb33235fd1954e7e91') | |
package() { | |
install -dv "${pkgdir}/usr/bin" | |
cp -r "${srcdir}/opt/" "${pkgdir}" | |
cp -r "${srcdir}/usr/" -t "${pkgdir}" | |
ln -sfv "/opt/ResponsivelyApp/responsively-app" -t "${pkgdir}/usr/bin" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment