summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChocobo12023-04-10 22:16:28 +0800
committerChocobo12023-04-10 22:16:58 +0800
commiteb82646bee7435bbec346dda4ee7ee893cfec91b (patch)
treef951efc03cef0b0206acc08c395c8667861647de
parent9e12163cb85829640d96e20adaedb6620b86c3a8 (diff)
downloadaur-guetzli-git.tar.gz
upgpkg: guetzli-git 1.0.1.r76.g214f2bb-1
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD10
2 files changed, 7 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 74f79a681800..9943f5930cc2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = guetzli-git
pkgdesc = Perceptual JPEG encoder
- pkgver = 1.0.1.r72.g0b78c7c
+ pkgver = 1.0.1.r76.g214f2bb
pkgrel = 1
url = https://github.com/google/guetzli
arch = i686
@@ -8,10 +8,9 @@ pkgbase = guetzli-git
license = Apache
makedepends = git
depends = libpng
- provides = guetzli
+ provides = guetzli=1.0.1.r76.g214f2bb
conflicts = guetzli
source = git+https://github.com/google/guetzli.git
sha256sums = SKIP
pkgname = guetzli-git
-
diff --git a/PKGBUILD b/PKGBUILD
index 7e58d8082d67..6d6b25d05692 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=guetzli-git
-pkgver=1.0.1.r72.g0b78c7c
+pkgver=1.0.1.r76.g214f2bb
pkgrel=1
pkgdesc="Perceptual JPEG encoder"
arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@ url="https://github.com/google/guetzli"
license=('Apache')
depends=('libpng')
makedepends=('git')
-provides=('guetzli')
+provides=("guetzli=$pkgver")
conflicts=('guetzli')
source=("git+https://github.com/google/guetzli.git")
sha256sums=('SKIP')
@@ -24,12 +24,12 @@ pkgver() {
build() {
cd "guetzli"
- make config=release
+ make \
+ config=release
}
package() {
cd "guetzli"
- install -d "$pkgdir/usr"
- install -Dm755 "bin/Release/guetzli" "$pkgdir/usr/bin/guetzli"
+ install -Dm755 "bin/Release/guetzli" -t "$pkgdir/usr/bin"
}