diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-02-08 22:50:40 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-02-08 22:50:40 +0100 |
commit | a31ee95e1eb3f7c5293a3c3904a08acfca0d07db (patch) | |
tree | d5842444c23898138748e5e5a25f69229e3fbfd9 /base | |
parent | 8903876fa9ec15694b6eb571be621276e0606197 (diff) | |
parent | 096a5dc4e41017d963c0e00457be6dc3096f27d1 (diff) | |
download | nutyx-pakxe-a31ee95e1eb3f7c5293a3c3904a08acfca0d07db.tar.gz nutyx-pakxe-a31ee95e1eb3f7c5293a3c3904a08acfca0d07db.tar.bz2 nutyx-pakxe-a31ee95e1eb3f7c5293a3c3904a08acfca0d07db.tar.xz nutyx-pakxe-a31ee95e1eb3f7c5293a3c3904a08acfca0d07db.zip |
Merge commit 'guy/master'
Diffstat (limited to 'base')
-rw-r--r-- | base/squashfs/.footprint | 5 | ||||
-rw-r--r-- | base/squashfs/.md5sum | 1 | ||||
-rw-r--r-- | base/squashfs/Pkgfile | 17 |
3 files changed, 23 insertions, 0 deletions
diff --git a/base/squashfs/.footprint b/base/squashfs/.footprint new file mode 100644 index 000000000..fe98365df --- /dev/null +++ b/base/squashfs/.footprint @@ -0,0 +1,5 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/local/ +drwxr-xr-x root/root usr/local/bin/ +-rwxr-xr-x root/root usr/local/bin/mksquashfs +-rwxr-xr-x root/root usr/local/bin/unsquashfs diff --git a/base/squashfs/.md5sum b/base/squashfs/.md5sum new file mode 100644 index 000000000..a2243ba76 --- /dev/null +++ b/base/squashfs/.md5sum @@ -0,0 +1 @@ +a3c23391da4ebab0ac4a75021ddabf96 squashfs4.0.tar.gz diff --git a/base/squashfs/Pkgfile b/base/squashfs/Pkgfile new file mode 100644 index 000000000..9bb5206ee --- /dev/null +++ b/base/squashfs/Pkgfile @@ -0,0 +1,17 @@ +# Description: un système de fichier en lecture seule hautement compressé. +# URL: http://squashfs.sourceforge.net/ +# Maintainer: NuTyX core team +# Packager: guy_ +# Depends on: + +name=squashfs +version=4.0 +release=1 +source=(http://downloads.sourceforge.net/project/$name/$name/$name$version/$name$version.tar.gz) + +build() { + cd $name$version/squashfs-tools + make + mkdir -p $PKG/usr/local/bin + make INSTALL_DIR=$PKG/usr/local/bin install +} |