mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=zlib
|
|
pkgver=1.2.5
|
|
pkgrel=2
|
|
pkgdesc='Compression library implementing the deflate compression method found in gzip and PKZIP'
|
|
arch=('i686' 'x86_64')
|
|
license=('custom')
|
|
url="http://www.zlib.net/"
|
|
depends=('glibc')
|
|
options=('!makeflags' 'log')
|
|
source=("http://zlib.net/zlib-${pkgver}.tar.gz"
|
|
'zlib-1.2.5-lfs-decls.patch')
|
|
md5sums=('c735eab2d659a96e5a594c9e8541ad63'
|
|
'4cb279ea3beab621f3526bf7b7ab99e5')
|
|
|
|
build() {
|
|
cd ${srcdir}/zlib-$pkgver
|
|
# see http://bugs.archlinux.org/task/19280
|
|
patch -p1 -i ${srcdir}/zlib-1.2.5-lfs-decls.patch || return 1
|
|
# work around gcc bug; see https://bugs.archlinux.org/task/20647
|
|
export CFLAGS="${CFLAGS/-O2/-O3} -fno-tree-vectorize -DUNALIGNED_OK"
|
|
./configure --prefix=/usr
|
|
make
|
|
|
|
grep -A 24 '^ Copyright' zlib.h > LICENSE
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/zlib-$pkgver
|
|
make install DESTDIR=${pkgdir}
|
|
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
|
|
} |