blob: b2293415265a2aecc2f063da837484cd45542d5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="make"
DEPS="xorg-util-macros"
PKG_VER=1.1.2
SOURCE=https://www.x.org/pub/individual/data/xbitmaps-$PKG_VER.tar.bz2
DESC="Bitmaps for xorg"
build () {
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
}
package () {
make DESTDIR=$PKG_DEST install
}
|