diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-11-03 00:02:55 +0100 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-11-03 00:02:55 +0100 |
commit | f3be44af55fc1645dea5c12adfb33f06c2d93bb4 (patch) | |
tree | 8cc7f36a7c3a36e53f0f634efd58beb84e08bbf6 /extra | |
parent | df9f0678186bd14a1f4d415a84040bd4eb45b329 (diff) | |
parent | 96d87d3aa29e0d0eb11f0fc4d2ed5f3344270dce (diff) | |
download | nutyx-pakxe-f3be44af55fc1645dea5c12adfb33f06c2d93bb4.tar.gz nutyx-pakxe-f3be44af55fc1645dea5c12adfb33f06c2d93bb4.tar.bz2 nutyx-pakxe-f3be44af55fc1645dea5c12adfb33f06c2d93bb4.tar.xz nutyx-pakxe-f3be44af55fc1645dea5c12adfb33f06c2d93bb4.zip |
Merge remote branch 'guy/master'
Diffstat (limited to 'extra')
-rw-r--r-- | extra/cryptsetup/.footprint | 16 | ||||
-rw-r--r-- | extra/cryptsetup/.md5sum | 1 | ||||
-rw-r--r-- | extra/cryptsetup/Pkgfile | 16 | ||||
-rw-r--r-- | extra/kqemu/.footprint | 5 | ||||
-rw-r--r-- | extra/kqemu/.md5sum | 1 | ||||
-rw-r--r-- | extra/kqemu/Pkgfile | 19 |
6 files changed, 58 insertions, 0 deletions
diff --git a/extra/cryptsetup/.footprint b/extra/cryptsetup/.footprint new file mode 100644 index 000000000..4ae4221f9 --- /dev/null +++ b/extra/cryptsetup/.footprint @@ -0,0 +1,16 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/libcryptsetup.h +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/cryptsetup/ +-rwxr-xr-x root/root usr/lib/libcryptsetup.la +lrwxrwxrwx root/root usr/lib/libcryptsetup.so -> libcryptsetup.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libcryptsetup.so.0 -> libcryptsetup.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libcryptsetup.so.0.0.0 +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/cryptsetup +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/locale/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/cryptsetup.8.gz diff --git a/extra/cryptsetup/.md5sum b/extra/cryptsetup/.md5sum new file mode 100644 index 000000000..66eb93e77 --- /dev/null +++ b/extra/cryptsetup/.md5sum @@ -0,0 +1 @@ +5eea2a77391a8a1a651b31cbaef59e22 cryptsetup-1.0.7.tar.bz2 diff --git a/extra/cryptsetup/Pkgfile b/extra/cryptsetup/Pkgfile new file mode 100644 index 000000000..188c540bc --- /dev/null +++ b/extra/cryptsetup/Pkgfile @@ -0,0 +1,16 @@ +# Description: +# URL: +# Maintainer: NuTyX core team +# Packager: +# Depends on: +name=cryptsetup +version=1.0.7 +release=1 +source=(http://cryptsetup.googlecode.com/files/$name-$version.tar.bz2) +build() { +cd $name-$version + ./configure --prefix=/usr + make + make check + make DESTDIR=$PKG install +} diff --git a/extra/kqemu/.footprint b/extra/kqemu/.footprint new file mode 100644 index 000000000..e7c138921 --- /dev/null +++ b/extra/kqemu/.footprint @@ -0,0 +1,5 @@ +drwxr-xr-x root/root lib/ +drwxr-xr-x root/root lib/modules/ +drwxr-xr-x root/root lib/modules/<kernel-version>/ +drwxr-xr-x root/root lib/modules/<kernel-version>/misc/ +-rw-r--r-- root/root lib/modules/<kernel-version>/misc/kqemu.ko diff --git a/extra/kqemu/.md5sum b/extra/kqemu/.md5sum new file mode 100644 index 000000000..99be8eaf7 --- /dev/null +++ b/extra/kqemu/.md5sum @@ -0,0 +1 @@ +d738d8ca7332211ab716ec3213d82ee1 kqemu-1.4.0pre1.tar.gz diff --git a/extra/kqemu/Pkgfile b/extra/kqemu/Pkgfile new file mode 100644 index 000000000..30ced2041 --- /dev/null +++ b/extra/kqemu/Pkgfile @@ -0,0 +1,19 @@ +# Description: +# URL: http://www.qemu.org/ +# Maintainer: NuTyX coreteam +# Packager: +# Depends on: + +name=kqemu +version=1.4.0pre1 +release=1 +source=(http://www.qemu.org/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure + make +# make DESTDIR=$PKG install + mkdir -p $PKG/lib/modules/`uname -r`/misc + cp kqemu.ko $PKG/lib/modules/`uname -r`/misc +} |