35 lines
999 B
Bash
35 lines
999 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=libxinerama
|
|
_openbsdver=6.9
|
|
pkgver=1.1.4
|
|
pkgrel=3
|
|
pkgdesc="X11 Xinerama extension library, provided by Xenocara"
|
|
arch=('i686' 'x86_64')
|
|
url="https://www.xenocara.org"
|
|
license=('X11')
|
|
depends=('libxext' 'xenocara-proto')
|
|
makedepends=('xenocara-util-macros')
|
|
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/libxinerama-$pkgver.tar.lz{,.sig})
|
|
sha512sums=('8c2df627d2a2141f5c6c9401be52aa429608898fbd2fc20cd7ab83f2e31be82dfc86d073f1c02a49538748b0980e71b5a795d1d1d9e441e27af3fd8cd3db5c7d'
|
|
'SKIP')
|
|
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
|
|
|
|
prepare() {
|
|
cd "xenocara-$_openbsdver/lib/libXinerama"
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd "xenocara-$_openbsdver/lib/libXinerama"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "xenocara-$_openbsdver/lib/libXinerama"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|