summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicola Murino2018-08-18 09:11:16 +0200
committerNicola Murino2018-08-18 09:11:16 +0200
commitf19808faaed2f3025daaa3a0872ae8c1d356b6f9 (patch)
tree87aa02c0e9813c1390227d150d4785fd2d1d1069
parent120310a529afd4e1e69e1abc65661aa84d38f6eb (diff)
downloadaur-f19808faaed2.tar.gz
fix depends
libpixman-1-0.dll depends on libgcc_s_seh-1.dll and libstdc++-6.dll at runtime
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD7
2 files changed, 8 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 52e5fb677178..5988197989ae 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,14 @@
# Generated by mksrcinfo v8
-# Wed Feb 3 23:02:02 UTC 2016
+# Sat Aug 18 07:11:13 UTC 2018
pkgbase = mingw-w64-pixman
pkgdesc = The pixel-manipulation library for X and cairo (mingw-w64)
pkgver = 0.34.0
- pkgrel = 1
+ pkgrel = 2
url = http://xorg.freedesktop.org
arch = any
license = custom
makedepends = mingw-w64-configure
- depends = mingw-w64-libpng
+ depends = mingw-w64-gcc
options = staticlibs
options = !strip
options = !buildflags
diff --git a/PKGBUILD b/PKGBUILD
index b348b7d91463..dc2330e8b84b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,13 @@
+# Maintainer: drakkan <nicola.murino at gmail dot com>
pkgname=mingw-w64-pixman
pkgver=0.34.0
-pkgrel=1
+pkgrel=2
pkgdesc="The pixel-manipulation library for X and cairo (mingw-w64)"
arch=(any)
url="http://xorg.freedesktop.org"
license=("custom")
makedepends=(mingw-w64-configure)
-depends=(mingw-w64-libpng)
+depends=(mingw-w64-gcc)
options=(staticlibs !strip !buildflags)
source=("http://xorg.freedesktop.org/releases/individual/lib/pixman-${pkgver}.tar.bz2")
sha1sums=('367698744e74d6d4f363041482965b9ea7fbe4a5')
@@ -33,3 +34,5 @@ package() {
find "$pkgdir/usr/${_arch}" -name '*.a' -o -name '*.dll' | xargs ${_arch}-strip -g
done
}
+
+# vim: ts=2 sw=2 et: