CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xkbset: Initial import (verified compilation).
authorVictor Martinez <pitillo@ono.com>
Mon, 1 Mar 2010 20:26:23 +0000 (20:26 +0000)
committerVictor Martinez <pitillo@ono.com>
Mon, 1 Mar 2010 20:26:23 +0000 (20:26 +0000)
xkbset/.footprint [new file with mode: 0644]
xkbset/.md5sum [new file with mode: 0644]
xkbset/Pkgfile [new file with mode: 0644]

diff --git a/xkbset/.footprint b/xkbset/.footprint
new file mode 100644 (file)
index 0000000..9519bcb
--- /dev/null
@@ -0,0 +1,7 @@
+drwxr-xr-x     root/root       usr/
+drwxr-xr-x     root/root       usr/bin/
+-rwxr-xr-x     root/root       usr/bin/xkbset
+-rwxr-xr-x     root/root       usr/bin/xkbset-gui
+drwxr-xr-x     root/root       usr/man/
+drwxr-xr-x     root/root       usr/man/man1/
+-rwxr-xr-x     root/root       usr/man/man1/xkbset.1.gz
diff --git a/xkbset/.md5sum b/xkbset/.md5sum
new file mode 100644 (file)
index 0000000..a474445
--- /dev/null
@@ -0,0 +1 @@
+282c416a76a237fa84a7b513c9d7b2cf  xkbset-0.5.tar.gz
diff --git a/xkbset/Pkgfile b/xkbset/Pkgfile
new file mode 100644 (file)
index 0000000..454de1f
--- /dev/null
@@ -0,0 +1,20 @@
+# Description: program to help manage many of the XKB features of X window
+# URL: http://www.math.missouri.edu/~stephen/software/
+# Arch Maintainer System Team crux-arm at mikeux dot dyndns dot org
+# Depends on: xorg-libx11 
+
+name=xkbset
+version=0.5
+release=1
+source=(http://www.math.missouri.edu/~stephen/software/$name/$name-$version.tar.gz)
+
+build() {
+  cd $name-$version
+  install -d $PKG/usr/{bin,man/man1}
+  sed -e 's|X11PREFIX=/usr/X11R6|X11PREFIX=/usr/|g' \
+    -e "s|X11BASE=/usr/X11R6|X11BASE=$CLFS/usr|g" \
+    -e 's|INSTALL_PROGRAM=${INSTALL} -s|INSTALL_PROGRAM=${INSTALL}|g' \
+    -i Makefile
+  make CC="$CC" 
+  make DESTDIR=$PKG INSTALL_MAN1=$PKG/usr/man/man1/ install
+}