mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/mawk: new aport
mawk is an interpreter for the AWK Programming Language https://invisible-island.net/mawk/
This commit is contained in:
parent
e32381a303
commit
aeed3bb908
38
testing/mawk/APKBUILD
Normal file
38
testing/mawk/APKBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
# Contributor: Miguel Terron <miguel.a.terron@gmail.com>
|
||||
# Maintainer: Miguel Terron <miguel.a.terron@gmail.com>
|
||||
pkgname=mawk
|
||||
pkgver=1.3.4
|
||||
pkgdate=20171017
|
||||
pkgrel=0
|
||||
pkgdesc="mawk is an interpreter for the AWK Programming Language"
|
||||
url="https://invisible-island.net/mawk/"
|
||||
arch="all"
|
||||
license="GPL-2"
|
||||
makedepends="build-base"
|
||||
subpackages="$pkgname-doc"
|
||||
source="https://invisible-island.net/datafiles/release/mawk.tar.gz"
|
||||
|
||||
builddir="$srcdir"/$pkgname-$pkgver-$pkgdate
|
||||
build() {
|
||||
cd "$builddir"
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--mandir=/usr/share/man \
|
||||
--localstatedir=/var
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$builddir"
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
sha512sums="4ed6ca0ecca12e7409d3d364b72dc6a2b411c61bf53fe8aa0b0cac65a3bdb941921c0b81d94f34c8ac9f4922c8c7566d347b5e6b5c74518ae3a88904f9e20f27 mawk.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user