mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:37:14 +08:00
348d542db8
will commit them separately next time... it's just too much work to do separate commits right now
34 lines
781 B
Bash
34 lines
781 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=gdk-pixbuf2
|
|
pkgver=2.28.2
|
|
pkgrel=1
|
|
pkgdesc="An image loading library"
|
|
arch=('x86_64')
|
|
url="http://www.gtk.org/"
|
|
license=('LGPL2.1')
|
|
depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11')
|
|
makedepends=('gobject-introspection')
|
|
options=('!libtool')
|
|
install=gdk-pixbuf2.install
|
|
source=("http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-${pkgver}.tar.xz")
|
|
sha1sums=('9876d0a20f592f8fb2a52d4a86ec43d607661beb')
|
|
|
|
build() {
|
|
cd "${srcdir}/gdk-pixbuf-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--without-libjasper \
|
|
--with-x11 \
|
|
--with-included-loaders=png
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "gdk-pixbuf-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|