summaryrefslogtreecommitdiffstats
path: root/module-init-tools
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 16:35:42 +0100
committerLukc <lukc@upyum.com>2010-12-12 16:35:42 +0100
commit59a620a7f910f27c5ace8b1dc95f6fe67a874a36 (patch)
tree9cbed81161f191312d69aa6dd79771e3ec5466c9 /module-init-tools
parenta76da484c4e7fc367157e4237c242d8aed1ba992 (diff)
downloadbase-59a620a7f910f27c5ace8b1dc95f6fe67a874a36.tar.gz
base-59a620a7f910f27c5ace8b1dc95f6fe67a874a36.tar.bz2
base-59a620a7f910f27c5ace8b1dc95f6fe67a874a36.tar.xz
base-59a620a7f910f27c5ace8b1dc95f6fe67a874a36.zip
module-init-tools mis à jour.
Diffstat (limited to 'module-init-tools')
-rw-r--r--module-init-tools/.footprint27
-rw-r--r--module-init-tools/.sha256sum1
-rw-r--r--module-init-tools/Pkgfile23
3 files changed, 28 insertions, 23 deletions
diff --git a/module-init-tools/.footprint b/module-init-tools/.footprint
index b75e2ef..1e7b65c 100644
--- a/module-init-tools/.footprint
+++ b/module-init-tools/.footprint
@@ -10,16 +10,17 @@ drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/modprobe
-rwxr-xr-x root/root sbin/rmmod
drwxr-xr-x root/root usr/
-drwxr-xr-x root/root usr/man/
-drwxr-xr-x root/root usr/man/man5/
--rw-r--r-- root/root usr/man/man5/depmod.conf.5.gz
--rw-r--r-- root/root usr/man/man5/modprobe.conf.5.gz
--rw-r--r-- root/root usr/man/man5/modprobe.d.5.gz
--rw-r--r-- root/root usr/man/man5/modules.dep.5.gz
-drwxr-xr-x root/root usr/man/man8/
--rw-r--r-- root/root usr/man/man8/depmod.8.gz
--rw-r--r-- root/root usr/man/man8/insmod.8.gz
--rw-r--r-- root/root usr/man/man8/lsmod.8.gz
--rw-r--r-- root/root usr/man/man8/modinfo.8.gz
--rw-r--r-- root/root usr/man/man8/modprobe.8.gz
--rw-r--r-- root/root usr/man/man8/rmmod.8.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/depmod.conf.5.bz2
+-rw-r--r-- root/root usr/share/man/man5/modprobe.conf.5.bz2
+-rw-r--r-- root/root usr/share/man/man5/modprobe.d.5.bz2
+-rw-r--r-- root/root usr/share/man/man5/modules.dep.5.bz2
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/depmod.8.bz2
+-rw-r--r-- root/root usr/share/man/man8/insmod.8.bz2
+-rw-r--r-- root/root usr/share/man/man8/lsmod.8.bz2
+-rw-r--r-- root/root usr/share/man/man8/modinfo.8.bz2
+-rw-r--r-- root/root usr/share/man/man8/modprobe.8.bz2
+-rw-r--r-- root/root usr/share/man/man8/rmmod.8.bz2
diff --git a/module-init-tools/.sha256sum b/module-init-tools/.sha256sum
new file mode 100644
index 0000000..3530546
--- /dev/null
+++ b/module-init-tools/.sha256sum
@@ -0,0 +1 @@
+d012ab07ea26721467a85a775f34747c1c8897e37f16bec5317d8a72ef8b4f17 module-init-tools-3.12.tar.bz2
diff --git a/module-init-tools/Pkgfile b/module-init-tools/Pkgfile
index a46e9fb..aa1429f 100644
--- a/module-init-tools/Pkgfile
+++ b/module-init-tools/Pkgfile
@@ -1,19 +1,22 @@
-description="Kernel module utilities"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+description="Kernel module utilities."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://kerneltools.org/KernelTools.org"
depends=()
name=module-init-tools
version=3.12
release=1
-source=(http://www.kernel.org/pub/linux/kernel/people/rusty/modules/module-init-tools-3.12.tar.bz2)
+source=(http://www.kernel.org/pub/linux/kernel/people/rusty/modules/$name-$version.tar.bz2)
build ()
{
- cd $name-$version;
- touch *.5 *.8;
- ./configure --prefix=/usr --bindir=/sbin --sbindir=/sbin;
- make;
- make DESTDIR=$PKG mandir=/usr/man install;
- install -d $PKG/etc/{modprobe.d,depmod.d}
+ cd $name-$version;
+ touch *.5 *.8;
+ ./configure \
+ --prefix=$prefix \
+ --bindir=/sbin \
+ --sbindir=/sbin;
+ make;
+ make DESTDIR=$PKG mandir=$mandir install;
+ install -d $PKG/etc/{modprobe.d,depmod.d}
}