blob: 11d29765ddb7f88269a2e96712ab9840f34bc9f4 (
plain)
1 # Description: Utility to create X cursors
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: libpng xorg-libxcursor
5
6 name=xorg-xcursorgen
7 version=1.0.7
8 release=1
9 source=(https://www.x.org/releases/individual/app/xcursorgen-$version.tar.bz2)
10
11 build() {
12 cd xcursorgen-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|