aboutsummaryrefslogtreecommitdiff
path: root/base/rfkill
diff options
context:
space:
mode:
Diffstat (limited to 'base/rfkill')
-rw-r--r--base/rfkill/rfkill-0.5-opts.patch.xzbin0 -> 348 bytes
-rw-r--r--base/rfkill/rfkill-0.5-udevrule.patch.xzbin0 -> 224 bytes
-rwxr-xr-xbase/rfkill/rfkill.build48
3 files changed, 48 insertions, 0 deletions
diff --git a/base/rfkill/rfkill-0.5-opts.patch.xz b/base/rfkill/rfkill-0.5-opts.patch.xz
new file mode 100644
index 0000000..089081b
--- /dev/null
+++ b/base/rfkill/rfkill-0.5-opts.patch.xz
Binary files differ
diff --git a/base/rfkill/rfkill-0.5-udevrule.patch.xz b/base/rfkill/rfkill-0.5-udevrule.patch.xz
new file mode 100644
index 0000000..f51ddd5
--- /dev/null
+++ b/base/rfkill/rfkill-0.5-udevrule.patch.xz
Binary files differ
diff --git a/base/rfkill/rfkill.build b/base/rfkill/rfkill.build
new file mode 100755
index 0000000..abb30ce
--- /dev/null
+++ b/base/rfkill/rfkill.build
@@ -0,0 +1,48 @@
+#!/bin/bash
+#
+# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd>
+
+source /usr/src/ports/Build/build.sh
+
+NAME=rfkill
+VERSION=0.5
+BUILD=1
+
+# Description
+
+cat > ${PKG}/install/slack-desc <<EOF
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+$(padd)|-----handy-ruler------------------------------------------------------|
+${NAME}: rfkill (tool to query subsystem interfaces)
+${NAME}:
+${NAME}: rfkill is a small tool to query the state of the rfkill switches,
+${NAME}: buttons and subsystem interfaces.
+${NAME}:
+${NAME}: Homepage: http://linuxwireless.org/en/users/Documentation/rfkill
+${NAME}:
+${NAME}:
+${NAME}:
+${NAME}:
+${NAME}:
+EOF
+
+# Sources
+
+SRCNAME[0]=${NAME}
+SRCVERS[0]=${VERSION}
+SRCPACK[0]=https://www.kernel.org/pub/software/network/rfkill/${SRCNAME[0]}-${SRCVERS[0]}.tar.xz
+
+build0()
+{
+make ${JOBS} V=1 OPTS="${FLAGS}"
+make install DESTDIR="${PKG}"
+license COPYING
+install.dir ${PKG}${SYS_DIR[udevrules]}
+install.dat 60-rfkill.rules ${PKG}${SYS_DIR[udevrules]}
+}