summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD7
2 files changed, 4 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5e616ae7a35d..cbcb7cb1a2d5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = flif
pkgdesc = Free Lossless Image Format
pkgver = 0.3
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/FLIF-hub/FLIF/
arch = i686
arch = x86_64
@@ -12,7 +12,6 @@ pkgbase = flif
depends = sdl2
optdepends = imagemagick: for gif2flif tool
optdepends = apng-utils: for apng2flif tool
- conflicts = flif-git
source = flif-0.3.tar.gz::https://github.com/FLIF-hub/FLIF/archive/v0.3.tar.gz
source = flif-use-build-flags.patch
sha256sums = aa02a62974d78f8109cff21ecb6d805f1d23b05b2db7189cfdf1f0d97ff89498
diff --git a/PKGBUILD b/PKGBUILD
index efde8d0a1e86..eaed53fab79f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=flif
_srcname=FLIF
pkgver=0.3
-pkgrel=2
+pkgrel=3
pkgdesc='Free Lossless Image Format'
arch=('i686' 'x86_64')
url='https://github.com/FLIF-hub/FLIF/'
@@ -16,7 +16,6 @@ optdepends=(
# AUR:
'apng-utils: for apng2flif tool'
)
-conflicts=('flif-git')
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/FLIF-hub/FLIF/archive/v${pkgver}.tar.gz"
'flif-use-build-flags.patch')
sha256sums=('aa02a62974d78f8109cff21ecb6d805f1d23b05b2db7189cfdf1f0d97ff89498'
@@ -40,7 +39,7 @@ build() {
for _target in all decoder viewflif
do
- msg2 "Building target '${_target}'..."
+ printf '%s\n' " -> Building target '${_target}'..."
make "$_target"
done
@@ -53,7 +52,7 @@ package() {
for _target in install{,-dev,-decoder,-viewflif}
do
- msg2 "Installing target '${_target}'..."
+ printf '%s\n' " -> Installing target '${_target}'..."
make PREFIX="${pkgdir}/usr" "$_target"
done
}