blob: 02d5b8c5c96bae4602df2852157fcacb6e9865df (
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
|
# Maintainer: Winston Astrachan <winston dot astrachan at gmail dot com>
# Maintainer: Henry Pham <huy at tableplus dot com>
pkgname=tableplus
pkgver=0.1.94
pkgrel=1
pkgdesc='Modern, native, and friendly GUI tool for relational databases (Alpha)'
arch=('x86_64')
url='https://tableplus.com/'
license=('custom')
depends=('gtksourceview3' 'libgee' 'gnome-keyring')
source=('LICENSE'
"https://deb.tableplus.com/debian/pool/main/t/tableplus/tableplus_${pkgver}_amd64.deb")
sha256sums=('76f924b1ebad5309ccf0dd7f3fe3d1b57ff3088b208a603900b0e240fdb5debb'
'3d398d098c9328ca4484f0a5a6a9cd015e96cde54e9f9a09d6d446c79a064478')
prepare() {
tar -xf "${srcdir}/data.tar.xz"
}
package() {
cd "$srcdir"
install -d "${pkgdir}/opt/tableplus/"
install -Dm755 opt/tableplus/tableplus -t "$pkgdir/usr/local/bin/"
install -Dm644 opt/tableplus/tableplus.desktop -t "${pkgdir}/usr/share/applications/"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
cp -r opt/tableplus/resource "${pkgdir}/opt/tableplus/"
echo "" >> "${pkgdir}/usr/share/applications/tableplus.desktop"
echo "Categories=Utility;Development;" >> "${pkgdir}/usr/share/applications/tableplus.desktop"
echo "Comment=Modern, native, and friendly GUI tool for relational databases (Alpha)" >> "${pkgdir}/usr/share/applications/tableplus.desktop"
find "${pkgdir}/opt/tableplus/" -type d -exec chmod 755 {} \;
find "${pkgdir}/opt/tableplus/" -type f -exec chmod 644 {} \;
}
|