mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 14:56:53 +02:00
24 lines
713 B
Text
24 lines
713 B
Text
# Contributor: MrBiTs <mrbits@mrbits.com.br>
|
|
# Maintainer: MrBiTs <mrbits@mrbits.com.br>
|
|
pkgname=shc
|
|
pkgver=4.0.3
|
|
pkgrel=2
|
|
pkgdesc="A generic shell script compiler."
|
|
url="https://neurobin.org/projects/softwares/unix/shc/"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/mrbitsdcf/shc/archive/refs/tags/$pkgver.tar.gz"
|
|
options="!check" # Test is disabled because developer didn't provide a test function
|
|
|
|
build() {
|
|
./configure
|
|
make
|
|
}
|
|
|
|
package() {
|
|
install -v -Dm 0755 $builddir/src/shc -t $pkgdir/usr/bin
|
|
}
|
|
|
|
sha512sums="
|
|
78fbab26c652b3c3a41401e044ae69776fbdf5d28736c55bcf111f4261f863f6d97d81e87ad9288faf9c9a3299c1453dcca9ffd9d9ea04a1ff2b7299257e8cf7 shc-4.0.3.tar.gz
|
|
"
|