8d8098eb78
Libpng <= 1.2.12 has a buffer overflow vulnerability, see ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.2.12-ADVISORY.txt and http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-3334
19 lines
383 B
Plaintext
19 lines
383 B
Plaintext
# Description: Library of PNG support functions.
|
|
# URL: http://www.libpng.org
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: zlib
|
|
|
|
name=libpng
|
|
version=1.2.13
|
|
release=1
|
|
source=(ftp://ftp.simplesystems.org/pub/$name/png/src/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|