mirror of
https://github.com/luzifer-aur/beekeeper-studio-bin.git
synced 2024-12-20 14:51:16 +00:00
initialcommit, v1.4.0
This commit is contained in:
commit
532eaa6fd8
3 changed files with 35 additions and 0 deletions
11
.SRCINFO
Normal file
11
.SRCINFO
Normal file
|
@ -0,0 +1,11 @@
|
|||
pkgbase = beekeeper-studio-bin
|
||||
pkgver = 1.4.0
|
||||
pkgrel = 1
|
||||
url = https://www.beekeeperstudio.io/
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
source_x86_64 = https://github.com/beekeeper-studio/beekeeper-studio/releases/download/v1.4.0/beekeeper-studio_1.4.0_amd64.deb
|
||||
sha256sums_x86_64 = edf01a3f22258dbd36f9d658c7bfe6127f52f4b072d196547879f63c043c051f
|
||||
|
||||
pkgname = beekeeper-studio-bin
|
||||
|
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
pkg
|
||||
src
|
||||
*.tar.xz
|
||||
*.deb
|
20
PKGBUILD
Normal file
20
PKGBUILD
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Maintainer: Michael Lutonsky <m@luto.at>
|
||||
|
||||
pkgname=beekeeper-studio-bin
|
||||
pkgver=1.4.0
|
||||
pkgrel=1
|
||||
pkgdesc=""
|
||||
arch=('x86_64')
|
||||
url="https://www.beekeeperstudio.io/"
|
||||
license=('MIT')
|
||||
source_x86_64=("https://github.com/beekeeper-studio/beekeeper-studio/releases/download/v${pkgver}/beekeeper-studio_${pkgver}_amd64.deb")
|
||||
sha256sums_x86_64=('edf01a3f22258dbd36f9d658c7bfe6127f52f4b072d196547879f63c043c051f')
|
||||
|
||||
|
||||
package () {
|
||||
cd ${pkgdir}
|
||||
tar -xf ${srcdir}/data.tar.xz
|
||||
|
||||
mkdir -p "${pkgdir}/usr/bin"
|
||||
ln -s "/opt/Beekeeper Studio/beekeeper-studio" "${pkgdir}/usr/bin"
|
||||
}
|
Loading…
Reference in a new issue