blob: a99bcdcd0e51da147eb21a83b2a50a760d3cde63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
NAME="xorg-cf-files"
DESC="Data files for the imake utility"
MAKEDEPS="make "
DEPS=""
PKG_VER=1.0.7
SOURCE="https://xorg.freedesktop.org/releases/individual/util/xorg-cf-files-$PKG_VER.tar.bz2"
build () {
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--sysconfdir=/etc \
--disable-static
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|