mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:14:37 +08:00
33 lines
747 B
Bash
33 lines
747 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer almack
|
|
|
|
pkgname=gdk-pixbuf2
|
|
pkgver=2.33.1
|
|
pkgrel=1
|
|
pkgdesc="An image loading library"
|
|
arch=('x86_64')
|
|
url="http://www.gtk.org/"
|
|
license=('LGPL2.1')
|
|
depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11' 'jasper')
|
|
makedepends=('gobject-introspection')
|
|
install=gdk-pixbuf2.install
|
|
source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver:0:4}/gdk-pixbuf-$pkgver.tar.xz)
|
|
sha256sums=('132358b39bd8204e2ef0571c14206dfdca1f44bcc94c21751d6e6b0433b5088b')
|
|
|
|
build() {
|
|
cd gdk-pixbuf-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
--with-x11 \
|
|
--with-libjasper \
|
|
--with-included-loaders=png
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd gdk-pixbuf-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|