blob: 73e395b1d579de10e47c243ee481821d5cfef72d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: darkvlados@gmail.com
pkgname=medis
pkgver=1.0.3
pkgrel=2
pkgdesc="Medis is a beautiful, easy-to-use database management application for Redis."
arch=("any")
url="https://github.com/luin/medis"
license=("MIT")
depends=('electron')
makedepends=('npm' 'asar' 'git' 'nodejs-lts-fermium')
source=("${pkgname}-git::git+https://github.com/darky/medis.git"
'medis.desktop'
'medis')
md5sums=('SKIP'
'F9B462B94D50FB4086D94FD420558B34'
'05074FDFE9D1FAA78550ED6551CF447B')
#pkgver() {
# cd "${pkgname}-git"
# git describe --tags | cut -c 2-6
#}
prepare() {
cd "${pkgname}-git"
git reset --hard 98519987c8e06a1c110fa0360db6d598aab0f55e
}
build() {
cd "${pkgname}-git"
npm ci
npm run build
asar p . ../medis.asar --unpack-dir "{.git,node_modules}"
}
package() {
install -Dm0755 -t "${pkgdir}/usr/bin" medis
install -Dm0644 -t "${pkgdir}/usr/share/applications" medis.desktop
install -Dm0644 -t "${pkgdir}/usr/lib/medis" medis.asar
install -Dm0644 "${pkgname}-git/resources/icns/Icon1024.png" "${pkgdir}/usr/share/pixmaps/medis.png"
}
|