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