blob: c7116c5dd4077976f43ff441d1a668afca811e48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com>
pkgname=vpkedit-bin
pkgver=4.3.2
pkgrel=1
pkgdesc="A library and CLI/GUI tool to create, read, and write several pack file formats (binary release)"
url="https://github.com/craftablescience/VPKEdit"
license=('MIT')
arch=('x86_64')
depends=('hicolor-icon-theme' 'xcb-util-cursor')
provides=("vpkedit")
conflicts=("vpkedit")
source=("vpkedit-$pkgver.zip::$url/releases/download/v$pkgver/VPKEdit-Linux-Installer-gcc-Release.zip")
sha256sums=('a91a6f5da05902c4399e7cf1af85aa3c3e3f221147a9d7b6aaeb7f2ab70fa44c')
package() {
ar x VPKEdit-$pkgver-Linux.deb
tar --use-compress-program=unzstd -xf data.tar.zst -C "$pkgdir"
install -Dm644 $pkgdir/opt/vpkedit/LICENSE -t "$pkgdir/usr/share/licenses/vpkedit"
}
|