mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 06:44:36 +08:00
43 lines
1.0 KiB
Bash
43 lines
1.0 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=grep
|
|
pkgver=2.21
|
|
pkgrel=1
|
|
pkgdesc="A string search utility"
|
|
arch=('x86_64')
|
|
license=('GPL3')
|
|
url="http://www.gnu.org/software/grep/grep.html"
|
|
groups=('base')
|
|
depends=('glibc' 'pcre' 'sh')
|
|
makedepends=('texinfo')
|
|
install="${pkgname}.install"
|
|
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
|
|
md5sums=('43c48064d6409862b8a850db83c8038a'
|
|
'SKIP')
|
|
|
|
# If pcre get a major upgrade in order to compile grep you must:
|
|
# downgrade pcre, compile grep static by adding LDFLAGS="$LDFLAGS -static"
|
|
# install the static version of grep, compile/install the new pcre
|
|
# compile normally grep
|
|
# this is needed because grep needs grep to compile (is hardcoded in the source)
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--without-included-regex
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|