From 7d16f47c87a9edd5a406f66d12bca2e6e4761728 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 3 Apr 2013 23:03:58 +0200 Subject: [PATCH] New package: fs-utills-v0.01 (hi eeewwwka). --- common/shlibs | 2 ++ srcpkgs/fs-utils/template | 27 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 srcpkgs/fs-utils/template diff --git a/common/shlibs b/common/shlibs index e1a75ef8d5..a6955ac62c 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1214,3 +1214,5 @@ libvcos.so rpi-firmware-20130228_1 liblockdev.so.1 lockdev-1.0.3_1 libcec.so.2 libcec-2.1.1_1 libpython3.3m.so.1.0 python3-3.3.0_1 +librump.so.0 netbsd-rumpkernel-20130321_1 +librumpvfs.so.0 netbsd-rumpkernel-20130321_1 diff --git a/srcpkgs/fs-utils/template b/srcpkgs/fs-utils/template new file mode 100644 index 0000000000..077cee76a0 --- /dev/null +++ b/srcpkgs/fs-utils/template @@ -0,0 +1,27 @@ +# Template file for 'fs-utils'. +pkgname=fs-utils +version=v0.01 +revision=1 +build_style=gnu-configure +configure_args="--disable-static" +makedepends="libbsd-devel netbsd-rumpkernel" +short_desc="NetBSD File System Access Utilities in Userland" +maintainer="Juan RP " +license="BSD" +homepage="https://github.com/stacktic/fs-utils" +long_desc=" + The aim of this project is to have a set of utilities to access and modify a + file system image without having to mount it. To use fs-utils you do not + have to be root, you just need read/write access to the image or device. + The advantage of fs-utils over similar projects such as mtools is supporting + the usage of familiar Unix tools (ls, cp, mv, etc.) for a large number of + file systems." + +nofetch=yes +noextract=yes + +do_fetch() { + local url="git://github.com/stacktic/fs-utils.git" + msg_normal "Fetching source from $url ...\n" + git clone -b${version} ${url} ${pkgname}-${version} +}