mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:07:13 +08:00
e5d48f25f0
meson check() requires ton of deps, skipped for now lot of issues building with meson, stay with configure when possible
29 lines
686 B
Bash
29 lines
686 B
Bash
pkgname=gdk-pixbuf2
|
|
pkgver=2.36.11
|
|
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' 'shared-mime-info')
|
|
makedepends=('gobject-introspection')
|
|
install=gdk-pixbuf2.install
|
|
source=(https://download.gnome.org/sources/gdk-pixbuf/${pkgver:0:4}/gdk-pixbuf-$pkgver.tar.xz)
|
|
sha256sums=('ae62ab87250413156ed72ef756347b10208c00e76b222d82d9ed361ed9dde2f3')
|
|
|
|
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
|
|
}
|