blob: 0a3612e08a3bc6349a37010643ea3001e4f73662 (
plain)
1 # Description: Library of PNG support functions.
2 # URL: http://www.libpng.org
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4 # Depends on: zlib
5
6 name=libpng
7 version=1.4.10
8 release=1
9 source=(http://download.sourceforge.net/$name/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr --mandir=/usr/man
15
16 make
17 make DESTDIR=$PKG install
18 }
|