blob: 70ccc252f5c164d457fd1458cd8a3762a3523f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $Id: PKGBUILD 29403 2010-10-14 00:20:35Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: SpepS <dreamspepser at yahoo dot it>
_pkgbasename=sdl_image
pkgname=lib32-$_pkgbasename
pkgver=1.2.10
pkgrel=3
pkgdesc="A simple library to load images of various formats as SDL surfaces (32-bit)"
arch=('x86_64')
url="http://www.libsdl.org/projects/SDL_image/"
license=('LGPL')
depends=('lib32-sdl' 'lib32-libpng' 'lib32-libjpeg' 'lib32-libtiff' 'lib32-zlib' "$_pkgbasename")
makedepends=('gcc-multilib')
options=('!libtool')
source=(http://www.libsdl.org/projects/SDL_image/release/SDL_image-${pkgver}.tar.gz)
md5sums=('6c06584b31559e2b59f2b982d0d1f628')
build() {
export CC='gcc -m32'
export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
cd ${srcdir}/SDL_image-${pkgver}
./configure --prefix=/usr --libdir=/usr/lib32
make
}
package() {
cd ${srcdir}/SDL_image-${pkgver}
make DESTDIR=$pkgdir install
rm -rf $pkgdir/usr/include
}
# vim: sw=2:ts=2 et:
|