blob: 56355d289e371aac294016eb7739f275458a4ed5 (
plain)
1 # Packager: Simone Rota, sip at crux dot nu
2 # Maintainer: Simone Rota, sip at crux dot nu
3 # Description: a graphical login utility
4 # URL: http://slim.berlios.de
5 # Depends on: xorg-libxft, libjpeg, libpng
6
7 name=slim
8 version=1.3.0
9 release=2
10 source=(http://download.berlios.de/$name/$name-$version.tar.gz \
11 http://jw.tks6.net/files/slim-crux-smooth.tar.gz $name.rc)
12
13 build () {
14 cd $name-$version
15 make
16 make DESTDIR=$PKG install
17 mkdir $PKG/etc/rc.d
18 install -m 755 ../$name.rc $PKG/etc/rc.d/$name
19 cd ../
20 sed -i "s|X11R6/||g" $PKG/etc/slim.conf
21
22 rm -f slim-crux-smooth/README
23 cp -r slim-crux-smooth $PKG/usr/share/slim/themes/crux-smooth
24 chmod 0644 $PKG/usr/share/slim/themes/crux-smooth/*
25 }
|