diff options
author | Tilman Sauerbeck <tilman@crux.nu> | 2008-04-03 11:59:39 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@crux.nu> | 2008-04-03 11:59:39 +0200 |
commit | 830ffd64981ca648f4315783c0a5e0e55bc44cbe (patch) | |
tree | 6add00f3b8f367378ce0750549e3b6d1149d14c9 /xorg-xcursorgen | |
parent | 9db420ad3c2ae927e013ad254067896588567129 (diff) | |
download | xorg-830ffd64981ca648f4315783c0a5e0e55bc44cbe.tar.gz xorg-830ffd64981ca648f4315783c0a5e0e55bc44cbe.tar.xz |
xorg-xcursorgen: initial release.
Diffstat (limited to 'xorg-xcursorgen')
-rw-r--r-- | xorg-xcursorgen/.footprint | 6 | ||||
-rw-r--r-- | xorg-xcursorgen/.md5sum | 1 | ||||
-rw-r--r-- | xorg-xcursorgen/Pkgfile | 18 |
3 files changed, 25 insertions, 0 deletions
diff --git a/xorg-xcursorgen/.footprint b/xorg-xcursorgen/.footprint new file mode 100644 index 00000000..6974f403 --- /dev/null +++ b/xorg-xcursorgen/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/xcursorgen +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/xcursorgen.1.gz diff --git a/xorg-xcursorgen/.md5sum b/xorg-xcursorgen/.md5sum new file mode 100644 index 00000000..949fdaef --- /dev/null +++ b/xorg-xcursorgen/.md5sum @@ -0,0 +1 @@ +6fc90896b8c786cb1a2100b4167f7874 xcursorgen-1.0.2.tar.bz2 diff --git a/xorg-xcursorgen/Pkgfile b/xorg-xcursorgen/Pkgfile new file mode 100644 index 00000000..77aea442 --- /dev/null +++ b/xorg-xcursorgen/Pkgfile @@ -0,0 +1,18 @@ +# Description: Utility to create X cursors +# URL: http://xorg.freedesktop.org +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu +# Depends on: xorg-libxcursor, libpng + +name=xorg-xcursorgen +version=1.0.2 +release=1 +source=(http://xorg.freedesktop.org/releases/individual/app/xcursorgen-$version.tar.bz2) + +build() { + cd xcursorgen-$version + + ./configure --prefix=/usr --mandir=/usr/man + + make + make DESTDIR=$PKG install +} |