blob: 84297a740347268e0a810d7ab3495da38f577180 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer:
pkgname=gperf
pkgver=3.1
pkgrel=3
pkgdesc="Mathematically-perfect hash function generator"
url="https://www.gnu.org/software/gperf/"
arch="all"
license="GPL-3.0+"
subpackages="$pkgname-doc"
depends=""
makedepends=""
source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr
make
}
check() {
make -j1 check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="855ebce5ff36753238a44f14c95be7afdc3990b085960345ca2caf1a2db884f7db74d406ce9eec2f4a52abb8a063d4ed000a36b317c9a353ef4e25e2cca9a3f4 gperf-3.1.tar.gz"
|