blob: fa7df9b80c26b83cfcf2883145c4c270f2007dd9 (
plain)
1 # Description: imake build system
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-cf-files xorg-xorgproto
5
6 name=xorg-imake
7 version=1.0.9
8 release=1
9 source=(https://www.x.org/releases/individual/util/imake-$version.tar.xz)
10
11 build() {
12 cd imake-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|