blob: 3c3e2c7c18354d490cdee20feae71d36a6d90706 (
plain)
1 # Description: xorg lib libXpm
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-libxpm
7 version=3.5.14
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libXpm-$version.tar.xz)
10
11 build() {
12 cd libXpm-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|