mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-22 00:02:23 +01:00
26 lines
597 B
Plaintext
26 lines
597 B
Plaintext
# Contributor: psykose <alice@ayaya.dev>
|
|
# Maintainer: psykose <alice@ayaya.dev>
|
|
pkgname=pc
|
|
pkgver=0.2
|
|
pkgrel=0
|
|
pkgdesc="programmer's calculator"
|
|
url="https://git.sr.ht/~ft/pc"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="byacc"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://git.sr.ht/~ft/pc/archive/$pkgver.tar.gz"
|
|
options="!check" # no tests
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" PREFIX=/usr install
|
|
}
|
|
|
|
sha512sums="
|
|
e0535979fc4f5067a0d11aadc6e53c5a2f3763407346f661a509cd568053f5ac34efbb0495b1743b1a2557c472f83939a79c247073611725611bc4c4370942a1 pc-0.2.tar.gz
|
|
"
|