summaryrefslogtreecommitdiffstats
path: root/giflib/Pkgfile
blob: 781445ac66af3c224d7518e37d0f085ac2d98b1f (plain) (blame)
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
# Description: A compressed GIF library compatible with libungif
# URL: https://giflib.sourceforge.net
# Maintainer: zorz, zorz at gmx dot com

name=giflib
version=5.2.2
release=2
source=(https://sourceforge.net/projects/giflib/files/$name-$version.tar.gz
  giflib-5.2.2-security_fixes-1.patch
  giflib-5.2.2-upstream_fixes-1.patch)

build() {
  cd $name-$version

  sed -e "/\$(MAKE) -C doc$/d" -i Makefile

  patch -Np1 -i $SRC/giflib-5.2.2-security_fixes-1.patch
  patch -Np1 -i $SRC/giflib-5.2.2-upstream_fixes-1.patch

  make
  make PREFIX=$PKG/usr install

  install -vDm 644 doc/*.1 -t $PKG/usr/share/man/man1/
  install -vDm 644 doc/*.7 -t $PKG/usr/share/man/man7/
}