blob: d1f70cf68f2ef04bc9a3a07befd0e9ca4d21743f (
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
|
# $Id: PKGBUILD 65381 2012-02-21 02:29:21Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: eric <eric@archlinux.org>
# Contributor: Aurelien Foret <orelien@chez.com>
pkgname=wdm
pkgver=1.28
pkgrel=6
pkgdesc="An replacement X window display manager similar to, and based on XDM"
arch=(i686 x86_64 'mips64el')
depends=('windowmaker' 'pam' 'bash' 'libxmu')
license=('GPL')
source=(http://voins.program.ru/$pkgname/$pkgname-$pkgver.tar.bz2)
url="http://voins.program.ru/wdm/"
md5sums=('4da8ffe3af233305786d9b6aab78b838')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --with-nlsdir=/usr/share/locale \
--sysconfdir=/etc/wdm --with-wdmdir=/etc/wdm --mandir=/usr/share/man \
--with-fakehome=/var/empty
make
make DESTDIR=$pkgdir install
# used /etc/pam.d/xscreensaver as an example
#
echo "auth required pam_unix_auth.so" > $pkgdir/etc/pam.d/wdm
chmod 0644 $pkgdir/etc/wdm/wdm-config
chmod 0755 $pkgdir/etc/wdm/authdir
}
|