blob: 5961c1b9a8f830888165c29cb633630569f5c544 (
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
|
# Maintainer: Allison Smith <a1yk@tilde.gree>
# Contributor: jstoik1 <joshstoik@gmail.com>
pkgname=refract-bin
pkgver=1.4.0
pkgrel=1
pkgdesc="Guided AVIF/JPEG XL/WebP conversion for JPEG and PNG sources."
arch=('x86_64')
url="https://github.com/Blobfolio/refract"
license=('WTFPL')
depends=('xdg-desktop-portal')
makedepends=('zstd')
options=('!strip' '!emptydirs')
install=${pkgname}.install
source=(
"https://github.com/Blobfolio/refract/releases/download/v${pkgver}/refract_${pkgver}-1_amd64.deb")
sha512sums=(
'08938fcf5f84e510fd5b16df9f68bb4e6002018601c32bd8d05104185e330f2825e1622dcb3593579399b588104e447559510cc0cfb946ebe885c6a1f264a1ae')
package(){
# Extract package data
tar -x --zstd -f data.tar.zst -C "${pkgdir}"
}
|