summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoraalldd2023-03-07 22:03:32 +0100
committeraalldd2023-03-07 22:03:32 +0100
commit28d09cd34518fab6bfb532325f2012daa554899f (patch)
tree446ffc4ae2394130b1db62234baa440e48f0ff22
parent5b0032e378ad0d728aeef75ac2d43b173b3b8470 (diff)
downloadaur-28d09cd34518fab6bfb532325f2012daa554899f.tar.gz
1.1.2 ; added license instructions
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD7
2 files changed, 7 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5debd71e6cbe..223b28c0b81f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = autolibheif
pkgdesc = CLI utility for encoding and decoding the HEIF/HEIC file format
- pkgver = 1.1.1
+ pkgver = 1.1.2
pkgrel = 1
url = https://github.com/allddd/autolibheif
arch = x86_64
@@ -10,7 +10,7 @@ pkgbase = autolibheif
depends = python>=3.6.0
depends = libpng
depends = libjpeg-turbo
- source = https://github.com/allddd/autolibheif/archive/refs/tags/v1.1.1.tar.gz
- sha256sums = 3fa8e19416bccdca357a047598e5887ec624b8b31125322cf1396bc496e938df
+ source = https://github.com/allddd/autolibheif/archive/refs/tags/v1.1.2.tar.gz
+ sha256sums = 9014f37dbf704a5cd6a2de070ed773d0fc76300975a11c5116a2a67f86cc3b6f
pkgname = autolibheif
diff --git a/PKGBUILD b/PKGBUILD
index ab1451655e26..144607fc1f77 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Alld Ovina <allddd (at) proton (dot) me>
pkgname=autolibheif
-pkgver=1.1.1
+pkgver=1.1.2
pkgrel=1
pkgdesc="CLI utility for encoding and decoding the HEIF/HEIC file format"
arch=('x86_64')
@@ -8,11 +8,12 @@ url="https://github.com/allddd/autolibheif"
license=('MIT')
depends=('libheif' 'python>=3.6.0' 'libpng' 'libjpeg-turbo')
makedepends=('python-setuptools')
-optdepends=()
source=(${url}/archive/refs/tags/v${pkgver}.tar.gz)
-sha256sums=('3fa8e19416bccdca357a047598e5887ec624b8b31125322cf1396bc496e938df')
+sha256sums=('9014f37dbf704a5cd6a2de070ed773d0fc76300975a11c5116a2a67f86cc3b6f')
package() {
cd "$pkgname-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1
+
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}