mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
27 lines
1,010 B
Bash
27 lines
1,010 B
Bash
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
|
|
|
|
pkgname=windowmaker-crm-git
|
|
pkgver=20090919
|
|
pkgrel=1
|
|
pkgdesc="An X11 window manager with a NEXTSTEP look and feel - git version from Carlos R. Mafra"
|
|
arch=(i686 x86_64)
|
|
url="http://www.windowmaker.info/"
|
|
license=('GPL' 'custom')
|
|
depends=('libxinerama' 'libpng' 'libxpm' 'libxft' 'libtiff>=3.9.1' 'giflib' 'libxmu')
|
|
options=('!libtool')
|
|
provides=('windowmaker')
|
|
conflicts=('windowmaker')
|
|
source=(ftp://ftp.archlinux.org/other/windowmaker/windowmaker-$pkgver.tar.gz)
|
|
md5sums=('92ff50efe80caf96794487ad1eaca4e3')
|
|
|
|
build() {
|
|
cd $srcdir/windowmaker-$pkgver
|
|
[ -z "$LINGUAS" ] && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`"
|
|
./autogen.sh
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--with-gnustepdir=/usr/share/GNUstep --with-nlsdir=/usr/share/locale \
|
|
--enable-xinerama || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
install -D -m644 COPYING.WTFPL $pkgdir/usr/share/licenses/$pkgname/COPYING.WTFPL
|
|
}
|