24 lines
859 B
Bash
24 lines
859 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=hyperbola-install-scripts
|
|
pkgver=18
|
|
pkgrel=1
|
|
pkgdesc="Scripts to aid in installing the system"
|
|
arch=('any')
|
|
url='https://git.hyperbola.info:50100/~team/software/hyperbola-install-scripts.git/'
|
|
license=('GPL-2')
|
|
depends=('bash' 'coreutils' 'pacman' 'util-linux')
|
|
source=("https://repo.hyperbola.info:50000/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
|
|
sha512sums=('ed966dd7b8c9b215d57a633229468bc38e60415a669a2846c90b7430479246a08e6bde70a10bc1cbaad805895f7a4a1bed00a689d0e0d748f35c7bdd28e78a25'
|
|
'SKIP')
|
|
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
|
|
|
|
build() {
|
|
make -C "$pkgname-$pkgver"
|
|
}
|
|
|
|
package() {
|
|
make -C "$pkgname-$pkgver" PREFIX=/usr DESTDIR="$pkgdir" install
|
|
install -Dm644 "$pkgname-$pkgver/COPYING" -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|