2018-03-30 13:15:49 +02:00
|
|
|
# Description: Library for the dynamic creation of images
|
2021-02-01 17:54:25 +01:00
|
|
|
# URL: https://libgd.github.io/
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Depends on: xorg-libxpm libjpeg-turbo freetype
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=libgd
|
2021-09-14 13:12:57 +02:00
|
|
|
version=2.3.3
|
2021-09-25 11:30:05 +02:00
|
|
|
release=2
|
|
|
|
source=(https://github.com/libgd/libgd/releases/download/gd-$version/$name-$version.tar.xz
|
|
|
|
remove_gd_flip_macros.patch)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
2021-02-01 17:54:25 +01:00
|
|
|
cd $name-$version
|
2021-09-25 11:30:05 +02:00
|
|
|
# macros are used in php
|
|
|
|
patch -p1 -R -i $SRC/remove_gd_flip_macros.patch
|
2021-02-01 17:54:25 +01:00
|
|
|
./configure --prefix=/usr
|
|
|
|
make DESTDIR=$PKG install
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|