blob: 743129e91b5209aabe65ae460eb7191cbf01111d (
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
34
35
36
37
38
39
|
# Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgname=icewm-git
pkgver=1.4.2.1048
pkgrel=1
pkgdesc="A window manager designed for speed, usability, and consistency"
arch=('i686' 'x86_64')
url="https://github.com/bbidulock/icewm"
license=('LGPL')
provides=('icewm' 'icewm2')
conflicts=('icewm' 'icewm2' 'icwm-cvs' 'icwm-ak' 'icwm-init0' 'icwm-testing' 'icwm-zstegi')
depends=('libxft' 'libxinerama' 'libxpm' 'libjpeg' 'libxrandr' 'libsndfile' 'fribidi')
makedepends=('git' 'xorg-mkfontdir' 'asciidoctor')
optdepends=('icewm-extra-themes: extra themes')
source=("$pkgname::git+https://github.com/bbidulock/icewm.git")
md5sums=('SKIP')
pkgver() {
cd $pkgname
git describe --tags --always | sed 's|^[^0-9]*||;s|[-_]|.|g;s|[.]g[a-f0-9]*$||'
}
build() {
cd $pkgname
./autogen.sh
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
}
# vim: sw=2 et:
|