mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-03 19:37:15 +08:00
23 lines
622 B
Bash
23 lines
622 B
Bash
|
# Maintainer: Ionut Biru <ionut@archlinux.ro>
|
|||
|
# Contributor: Mikko Sepp<70>l<EFBFBD> <t-r-a-y@mbnet.fi>
|
|||
|
# Licence in pcre pkg
|
|||
|
|
|||
|
_pkgsourcename=pcre
|
|||
|
pkgname=lib32-$_pkgsourcename
|
|||
|
pkgver=8.10
|
|||
|
pkgrel=1
|
|||
|
pkgdesc="A library that implements Perl 5-style regular expressions"
|
|||
|
arch=('x86_64')
|
|||
|
url="http://pcre.sourceforge.net"
|
|||
|
license=('custom')
|
|||
|
groups=('lib32')
|
|||
|
depends=('lib32-gcc')
|
|||
|
source=(ftp://ftp.archlinux.org/core/os/i686/$_pkgsourcename-$pkgver-$pkgrel-i686.pkg.tar.xz)
|
|||
|
|
|||
|
build() {
|
|||
|
cd $srcdir
|
|||
|
mkdir -p $pkgdir/opt/lib32/lib
|
|||
|
cp -dp lib/*.so* $pkgdir/opt/lib32/lib
|
|||
|
}
|
|||
|
md5sums=('d8a664bdec4c531191c1ec3e4402bdf4')
|