summaryrefslogtreecommitdiffstats
path: root/mingw-w64-gdk-pixbuf2
diff options
context:
space:
mode:
authorLAN-TW <lantw44@gmail.com>2013-05-18 11:42:12 +0800
committerLAN-TW <lantw44@gmail.com>2013-05-18 11:42:12 +0800
commitcb9228fbd8c5143e6fb2835369d8e61c69011da1 (patch)
tree25c8a28bf88d773dc83e73a93c6d7764fd396221 /mingw-w64-gdk-pixbuf2
downloadAUR-PKGBUILD-cb9228fbd8c5143e6fb2835369d8e61c69011da1.tar
AUR-PKGBUILD-cb9228fbd8c5143e6fb2835369d8e61c69011da1.tar.gz
AUR-PKGBUILD-cb9228fbd8c5143e6fb2835369d8e61c69011da1.tar.bz2
AUR-PKGBUILD-cb9228fbd8c5143e6fb2835369d8e61c69011da1.tar.lz
AUR-PKGBUILD-cb9228fbd8c5143e6fb2835369d8e61c69011da1.tar.xz
AUR-PKGBUILD-cb9228fbd8c5143e6fb2835369d8e61c69011da1.tar.zst
AUR-PKGBUILD-cb9228fbd8c5143e6fb2835369d8e61c69011da1.zip
Initial commit - Import old files
Diffstat (limited to 'mingw-w64-gdk-pixbuf2')
-rw-r--r--mingw-w64-gdk-pixbuf2/PKGBUILD47
1 files changed, 47 insertions, 0 deletions
diff --git a/mingw-w64-gdk-pixbuf2/PKGBUILD b/mingw-w64-gdk-pixbuf2/PKGBUILD
new file mode 100644
index 0000000..a317c9b
--- /dev/null
+++ b/mingw-w64-gdk-pixbuf2/PKGBUILD
@@ -0,0 +1,47 @@
+pkgname=mingw-w64-gdk-pixbuf2
+pkgver=2.28.1
+pkgrel=1
+pkgdesc="An image loading library (mingw-w64)"
+arch=(any)
+url="http://www.gtk.org"
+license=("GPL2")
+makedepends=(mingw-w64-gcc mingw-w64-pkg-config)
+depends=(mingw-w64-crt
+'mingw-w64-glib2>=2.34.0'
+mingw-w64-jasper
+mingw-w64-libpng
+mingw-w64-libjpeg-turbo
+mingw-w64-libtiff)
+options=(!libtool !strip !buildflags)
+source=("http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz")
+md5sums=('5c71cce316d08c559fc5970aa60754ab')
+
+_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
+
+build() {
+ for _arch in ${_architectures}; do
+ unset LDFLAGS
+ export CFLAGS="-O2 -pipe -mms-bitfields"
+ export CXXFLAGS="${CFLAGS}"
+ export CXX=$_arch-g++
+ mkdir -p "${srcdir}/${pkgname}-${pkgver}-build-${_arch}"
+ cd "${srcdir}/${pkgname}-${pkgver}-build-${_arch}"
+ ${srcdir}/gdk-pixbuf-${pkgver}/configure \
+ --prefix=/usr/${_arch} \
+ --build=$CHOST \
+ --host=${_arch} \
+ --with-included-loaders=wbmp,png,pnm,ras,ani,xpm,xbm,tga,icns,pcx,qtif,gdip-ico,gdip-wmf,gdip-emf,gdip-bmp,gdip-gif,gdip-jpeg,gdip-tiff
+ make
+ done
+}
+
+package() {
+ for _arch in ${_architectures}; do
+ cd "${srcdir}/${pkgname}-${pkgver}-build-${_arch}"
+ make DESTDIR="$pkgdir" install
+ find "$pkgdir/usr/${_arch}" -name '*.exe' -o -name '*.bat' -o -name '*.def' -o -name '*.exp' | xargs -rtl1 rm
+ find "$pkgdir/usr/${_arch}" -name '*.dll' | xargs -rtl1 ${_arch}-strip -x
+ find "$pkgdir/usr/${_arch}" -name '*.a' -o -name '*.dll' | xargs -rtl1 ${_arch}-strip -g
+ rm -r "$pkgdir/usr/${_arch}/share"
+ done
+}