xorg/xorg-xdm/Pkgfile

26 lines
547 B
Plaintext
Raw Normal View History

2007-09-30 14:25:41 +02:00
# Description: X display manager
# URL: http://xorg.freedesktop.org
2012-07-16 13:56:39 +02:00
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
2019-08-25 15:41:05 +02:00
# Depends on: linux-pam xorg-server xorg-xrdb
2007-09-30 14:25:41 +02:00
name=xorg-xdm
2022-12-04 17:11:45 +01:00
version=1.1.14
release=1
2022-04-04 11:56:08 +02:00
source=(https://www.x.org/releases/individual/app/xdm-$version.tar.xz
2022-12-04 17:11:45 +01:00
xdm xdm.pam)
2007-09-30 14:25:41 +02:00
build() {
cd xdm-$version
2022-04-04 11:56:08 +02:00
./configure \
--prefix=/usr \
--with-xdmconfigdir=/etc/X11/xdm \
--enable-xdmshell
2007-09-30 14:25:41 +02:00
make
make DESTDIR=$PKG install
install -D -m 755 $SRC/xdm $PKG/etc/rc.d/xdm
install -D -m 755 $SRC/xdm.pam $PKG/etc/pam.d/xdm
2007-09-30 14:25:41 +02:00
}