mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=imlib2
|
|
pkgver=1.5.1
|
|
pkgrel=0
|
|
pkgdesc="Image manipulation library"
|
|
url="https://sourceforge.net/projects/enlightenment"
|
|
arch="all"
|
|
license="Imlib2"
|
|
subpackages="$pkgname-dev"
|
|
depends_dev="freetype-dev libxext-dev libsm-dev"
|
|
makedepends="$depends_dev tiff-dev giflib-dev bzip2-dev libpng-dev
|
|
libid3tag-dev libjpeg-turbo-dev zlib-dev util-linux-dev"
|
|
source="http://downloads.sourceforge.net/enlightenment/$pkgname-src/$pkgname-$pkgver.tar.bz2"
|
|
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc/imlib2 \
|
|
--x-libraries=/usr/lib \
|
|
--disable-mmx \
|
|
--disable-amd64 \
|
|
--enable-visibility-hiding \
|
|
--with-x \
|
|
--with-bzip2 \
|
|
--with-gif \
|
|
--with-id3 \
|
|
--with-jpeg \
|
|
--with-png \
|
|
--with-tiff \
|
|
--with-zlib
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
sha512sums="f9d971674887d4af067c6921e34b6fe598db0317052bc864b676c526b36373ce021d9d49cad95aa64dbbd8e74f1831ddf3ed105900e3df2b66a6b53f7f27c732 imlib2-1.5.1.tar.bz2"
|