blob: 3c8c04471d21d0b0f73d72c095ff5819582382f0 (
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.3
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libSM-$version.tar.bz2)
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 }
|