blob: 822ab8ccc5dad3bd41572f199cd8352b72625555 (
plain)
1 # Description: X Session Management client library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: util-linux xorg-libice
5
6 name=xorg-libsm
7 version=1.2.4
8 release=1
9 source=(https://xorg.freedesktop.org/archive/individual/lib/libSM-$version.tar.xz)
10
11 build() {
12 cd libSM-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 rm $PKG/usr/share/doc/libSM/{SMlib,xsmp}.xml
17 find $PKG/usr/share -type d -delete
18 }
|