38 lines
1010 B
Bash
38 lines
1010 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
# Based on xorg-util-macros package
|
|
|
|
pkgname=xenocara-util-macros
|
|
_openbsdver=6.9
|
|
pkgver=1.19.2
|
|
pkgrel=6
|
|
pkgdesc="Xenocara Autotools macros"
|
|
arch=(any)
|
|
license=('Expat')
|
|
url="https://www.xenocara.org"
|
|
provides=('xorg-util-macros')
|
|
conflicts=('xorg-util-macros')
|
|
replaces=('xorg-util-macros')
|
|
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/util/macros-$pkgver.tar.lz{,.sig})
|
|
sha512sums=('640fb2d87b503f08f9b022a16a44069afd0c37378e9fa22a35f11763dc5da2c815b124309980ebb0bbe7995f0fb340b355715da21676b65b612afa2f700e7ecc'
|
|
'SKIP')
|
|
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
|
|
|
|
prepare() {
|
|
cd "xenocara-$_openbsdver/util/macros"
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd "xenocara-$_openbsdver/util/macros"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "xenocara-$_openbsdver/util/macros"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|