blob: 4037cf309ed9184d9548b951cfe089e9224c1794 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/mkpkg
# description: Bitmaps for X
# url: https://xorg.freedesktop.org
name=x11-xbitmaps
version=1.1.3
release=1
source=(https://www.x.org/releases/individual/data/xbitmaps-$version.tar.xz)
build() {
cd xbitmaps-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
# vim: filetype=sh
|