aboutsummaryrefslogtreecommitdiffstats
path: root/main/gnuchess/APKBUILD
blob: c068a04bbb1a05a852122161c15687c19000772d (plain)
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
32
33
34
35
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gnuchess
pkgver=6.2.5
pkgrel=1
pkgdesc="The GNU chess program"
url="https://www.gnu.org/software/chess/"
arch="all"
license="GPL-3.0-or-later"
subpackages="$pkgname-doc"
source="ftp://ftp.gnu.org/pub/gnu/chess/gnuchess-$pkgver.tar.gz
	uclibc.patch
	"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var
	make
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

sha512sums="f3f65a85eb4c93f6f10c7058bde7ee7f4a48c2f465b24a7cc0d5bcafe4df186b434ce23bf8c032d012efffba39c6c3c60ada484ff22d87114ce2be5dd0da6835  gnuchess-6.2.5.tar.gz
3f42fdcccfeab43f2e47ae599aee19a76a9e4b6af41f68456d30d8520fb410c689f2d56aae06c0588bea9b38e5aa508fb992cfc913906b6e5911d7f9d60bd9fc  uclibc.patch"