blob: 2524aaca98a30b7ece9a34fee8aa3c85c9a58645 (
plain)
1 # Description: xorg lib libXmu
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-libxext xorg-libxt
5
6 name=xorg-libxmu
7 version=1.1.4
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libXmu-$version.tar.xz)
10
11 build() {
12 cd libXmu-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18
19 rm $PKG/usr/share/doc/libXmu/{Xmu.xml,xlogo.svg}
20 find $PKG/usr/share -type d -delete
21 }
|