blob: 0b639c65f45659a56ada9bedcf8ca5adaf5efaed (
plain)
1 # Description: Library for the dynamic creation of images
2 # URL: https://libgd.github.io/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: xorg-libxpm libjpeg-turbo freetype
5
6 name=libgd
7 version=2.2.5
8 release=1
9 source=(https://github.com/libgd/libgd/releases/download/gd-$version/$name-$version.tar.xz)
10
11 build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15 make DESTDIR=$PKG install
16 }
|