blob: 4037cf309ed9184d9548b951cfe089e9224c1794 (
plain) (
tree)
|
|
#!/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
|