41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
# Based on xorg-xpr package
|
|
|
|
pkgname=xenocara-xpr
|
|
_openbsdver=6.9
|
|
pkgver=1.0.5
|
|
pkgrel=3
|
|
pkgdesc="Print an X window dump from xwd, provided by Xenocara"
|
|
arch=(i686 x86_64)
|
|
url="https://www.xenocara.org"
|
|
license=('X11')
|
|
depends=('libx11' 'libxmu' 'sh')
|
|
makedepends=('xenocara-util-macros')
|
|
groups=('xenocara-apps' 'xenocara' 'xorg-apps' 'xorg')
|
|
provides=('xorg-xpr')
|
|
conflicts=('xorg-xpr')
|
|
replaces=('xorg-xpr')
|
|
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/app/xpr-$pkgver.tar.lz{,.sig})
|
|
sha512sums=('ffcf40dca19b48579efe50203816effe2a27a8877210ba162fca72db8b6853f29127d88d45e9a1e806e3e6e1c7ee437e9fa4306ad174f2a5e98ff23a685e4976'
|
|
'SKIP')
|
|
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
|
|
|
|
prepare() {
|
|
cd "xenocara-$_openbsdver/app/xpr"
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd "xenocara-$_openbsdver/app/xpr"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "xenocara-$_openbsdver/app/xpr"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|