35 lines
1009 B
Bash
35 lines
1009 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=libxmu
|
|
_openbsdver=6.9
|
|
pkgver=1.1.3
|
|
pkgrel=2
|
|
pkgdesc="X11 miscellaneous micro-utility library, provided by Xenocara"
|
|
arch=('i686' 'x86_64')
|
|
url="https://www.xenocara.org"
|
|
depends=('libxext' 'libxt')
|
|
makedepends=('xenocara-util-macros')
|
|
license=('X11')
|
|
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/libxmu-$pkgver.tar.lz{,.sig})
|
|
sha512sums=('d0bef32ba96d67f6d0fea5268d59f966032591f684e2d5f45377cc52f1d27f557406a7078f95ec8f5ea7926113f335d7426981866a120491fa4449ec6f6ec6ba'
|
|
'SKIP')
|
|
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
|
|
|
|
prepare() {
|
|
cd "xenocara-$_openbsdver/lib/libXmu"
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd "xenocara-$_openbsdver/lib/libXmu"
|
|
./configure --prefix=/usr --sysconfdir=/etc --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "xenocara-$_openbsdver/lib/libXmu"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|