mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 03:54: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.31.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=('25a75e3c61dac11e6ff6416ad846951ccafac6486b1c6a1bfb0b213b99db52cd')
|
|
|
|
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
|
|
}
|