mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-03 17:57:15 +08:00
23 lines
736 B
Bash
23 lines
736 B
Bash
|
# $Id: PKGBUILD 20150 2010-07-02 17:55:47Z ibiru $
|
|||
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
|||
|
# Contributor: Pierre Schmitz <pierre@archlinux.de>
|
|||
|
# Contributor: Mikko Sepp<70>l<EFBFBD> <t-r-a-y@mbnet.fi>
|
|||
|
_pkgsourcename=libpng
|
|||
|
pkgname=lib32-$_pkgsourcename
|
|||
|
pkgver=1.4.4
|
|||
|
pkgrel=1
|
|||
|
pkgdesc="A collection of routines used to create PNG format graphics files"
|
|||
|
arch=('x86_64')
|
|||
|
url="http://www.libpng.org/pub/png/libpng.html"
|
|||
|
license=('custom')
|
|||
|
groups=('lib32')
|
|||
|
depends=('lib32-zlib')
|
|||
|
source=(http://chakra-project.org/repo/platform-testing/i686/$_pkgsourcename-$pkgver-$pkgrel-i686.pkg.tar.xz)
|
|||
|
|
|||
|
build() {
|
|||
|
cd $srcdir
|
|||
|
mkdir -p $pkgdir/opt/lib32/usr/lib
|
|||
|
cp -dp usr/lib/*.so* $pkgdir/opt/lib32/usr/lib
|
|||
|
}
|
|||
|
md5sums=('0e078f408542831b8070d63f9cd7a0a0')
|