mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-09 15:07:17 +08:00
49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# Lib32 Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
# maintainer (x86_64): Anke Boersma <abveritas[at]chakra-project[dot]org>
|
|
|
|
_pkgbasename=gdk-pixbuf2
|
|
pkgname=lib32-$_pkgbasename
|
|
pkgver=2.24.0
|
|
pkgrel=1
|
|
pkgdesc="An image loading library for gtk2 (32-bit)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gtk.org/"
|
|
license=('GPL2')
|
|
depends=('lib32-glib2>=2.25.15'
|
|
lib32-lib{'png>=1.4.3','tiff>=3.9.4','jpeg>=8.0.2',x11}
|
|
$_pkgbasename)
|
|
makedepends=(gcc-multilib)
|
|
options=('!libtool' '!docs')
|
|
install=gdk-pixbuf2.install
|
|
source=(http://download.gnome.org/sources/gdk-pixbuf/2.24/gdk-pixbuf-${pkgver}.tar.bz2)
|
|
sha256sums=('38d2630314e6d91976bffd833236f84fefa440a9038f86dc422820a39f2e3700')
|
|
|
|
build() {
|
|
export CC="gcc -m32"
|
|
export CXX="g++ -m32"
|
|
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
|
|
|
|
cd "${srcdir}/gdk-pixbuf-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--without-libjasper \
|
|
--with-included-loaders=png
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/gdk-pixbuf-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
rm -rf "${pkgdir}"/etc
|
|
rm -rf "${pkgdir}"/usr/{include,share}
|
|
|
|
cd "${pkgdir}"/usr/bin
|
|
mv gdk-pixbuf-query-loaders gdk-pixbuf-query-loaders-32
|
|
rm gdk-pixbuf-csource
|
|
}
|
|
|