aboutsummaryrefslogtreecommitdiffstats
path: root/community/detenc/APKBUILD
blob: f43ee5fcf869a0af6663d4915507296d25d2d488 (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
# Contributor: Ed Robinson <ed+alpine@reevoo.com>
# Maintainer: Ed Robinson <ed+alpine@reevoo.com>
pkgname=detenc
pkgver=2.0.0
pkgrel=1
pkgdesc="A lightweight, low-memory character encoding detector"
url="https://github.com/reevoo/detenc"
arch="all"
license="MIT"
depends=""
makedepends="ruby-rake ruby-minitest"
source="$pkgname-$pkgver.tar.gz::https://github.com/reevoo/$pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

check() {
	cd "$builddir"
	make check
}

build() {
	cd "$builddir"
	make
}

package() {
	mkdir -p "$pkgdir"/bin
	make PREFIX="$pkgdir" -C "$builddir" install
}

sha512sums="b4c0dc71a699b2e30a345d641781bd58146be84a727e89dc9ef39da7ddb752659371ba8fc37b345c514b43f92723ef80c9bbe73c72a562a2729a1626ec3f53db  detenc-2.0.0.tar.gz"