mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
46 lines
1 KiB
Text
46 lines
1 KiB
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Contributor: Arch3y <arch3y@riseup.net>
|
|
pkgname=flex
|
|
pkgver=2.6.4
|
|
pkgrel=6
|
|
pkgdesc="A tool for generating text-scanning programs"
|
|
url="https://github.com/westes/flex"
|
|
arch="all"
|
|
license="BSD-2-Clause"
|
|
depends="m4"
|
|
depends_dev="flex"
|
|
makedepends="$depends_dev bison help2man"
|
|
subpackages="$pkgname-doc $pkgname-libs $pkgname-dev"
|
|
source="https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-static \
|
|
--enable-shared \
|
|
ac_cv_func_malloc_0_nonnull=yes \
|
|
ac_cv_func_realloc_0_nonnull=yes
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make install DESTDIR="$pkgdir"
|
|
ln -s flex "$pkgdir"/usr/bin/lex
|
|
}
|
|
|
|
sha512sums="
|
|
e9785f3d620a204b7d20222888917dc065c2036cae28667065bf7862dfa1b25235095a12fd04efdbd09bfd17d3452e6b9ef953a8c1137862ff671c97132a082e flex-2.6.4.tar.gz
|
|
"
|