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