mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-20 16:12:22 +01:00
36 lines
1014 B
Plaintext
36 lines
1014 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=gingerbase
|
|
pkgver=2.3.0
|
|
pkgrel=1
|
|
pkgdesc="Gingerbase: basic host management for WoK"
|
|
url="https://kimchi-project.github.io/gingerbase/"
|
|
arch="noarch"
|
|
license="AGPL-2.1"
|
|
depends="py2-configobj py2-pyparted wok"
|
|
makedepends="automake autoconf libtool
|
|
python2-dev gettext-dev pyflakes libxslt"
|
|
options="!check"
|
|
subpackages="$pkgname-lang"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/kimchi-project/$pkgname/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
sh ./autogen.sh --system
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-rpath \
|
|
--enable-sample
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="90167f677a341d687a426fd4938aecdcba2a36cd109d7e0f81b55a74b077f00253decd015d65a5ffbd075a320015153ddf70bfcbdbf85ff79c0895ba189437de gingerbase-2.3.0.tar.gz"
|