mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-03 05:27:16 +08:00
22 lines
640 B
Bash
22 lines
640 B
Bash
# $Id: PKGBUILD 11834 2010-02-19 11:11:26Z ibiru $
|
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi>
|
|
_pkgsourcename=freetype2
|
|
pkgname=lib32-$_pkgsourcename
|
|
pkgver=2.4.3
|
|
pkgrel=1
|
|
pkgdesc="TrueType font rendering library"
|
|
url="http://freetype.sourceforge.net"
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
groups=('lib32')
|
|
depends=('lib32-zlib')
|
|
source=(http://www.chakra-project.org/repo/core-testing/i686/$_pkgsourcename-$pkgver-$pkgrel-i686.pkg.tar.xz)
|
|
md5sums=('f8fdf150aadd97d0e86a42e7a85f147c')
|
|
|
|
build() {
|
|
cd $srcdir
|
|
mkdir -p $pkgdir/opt/lib32/usr/lib
|
|
cp -dp usr/lib/*.so* $pkgdir/opt/lib32/usr/lib
|
|
}
|