blob: 56127377d86b49aa20df461e3632ee6a8f1b3d8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Brian Bidulock <bidulock@openss7.org>
#
pkgname=xtoolwait-git
pkgver=1.3.6.1.21.g6884e3f
pkgrel=1
pkgdesc="Utility similar to 'toolwait' on the Sun platform"
epoch=1
arch=(i686 x86_64)
url="https://github.com/XDesk/xtoolwait"
license=('GPL')
depends=('libxext')
makedepends=('git' 'imake')
source=("$pkgname::git+https://github.com/XDesk/xtoolwait.git")
md5sums=('SKIP')
pkgver() {
cd $pkgname
git describe --tags |sed 's,^v,,;s,-,.,g'
}
build() {
cd $pkgname
xmkmf
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir/" install
make DESTDIR="$pkgdir/" install.man
}
# vim:set ts=2 sw=2 et:
|