~alpine/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[alpine-devel] [PATCH] Initial APKBUILD for avfs

Details
Message ID
<1335170802-1777-1-git-send-email-vkrishn4@gmail.com>
Sender timestamp
1335170802
DKIM signature
missing
Download raw message
Patch: +36 -0
From: "V.Krishn" <vkrishn4@gmail.com>

A virtual filesystem for looking into archives
---
 testing/avfs/APKBUILD |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)
 create mode 100644 testing/avfs/APKBUILD

diff --git a/testing/avfs/APKBUILD b/testing/avfs/APKBUILD
new file mode 100644
index 0000000..5440033
--- /dev/null
+++ b/testing/avfs/APKBUILD
@@ -0,0 +1,36 @@
# Contributor: V.Krishn <vkrishn4@gmail.com>
# Maintainer: 
pkgname=avfs
pkgver=1.0.0
pkgrel=0
pkgdesc="A Virtual File System for looking into archives"
url="http://avf.sourceforge.net/"
arch="all"
license="GPL"
depends=""
depends_dev=""
makedepends="bash zlib-dev bzip2-dev fuse-dev"
install=""
subpackages=""
source="http://space.dl.sourceforge.net/project/avf/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2"

_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
	cd "$_builddir"
}

build() {
	cd "$_builddir"
	./configure --enable-fuse --enable-library --prefix=/usr
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	rm "$pkgdir"/usr/lib/*.la
	rm "$pkgdir"/usr/lib/*.a
}


md5sums="c58421e4f294125895f2c6653a7366a7  avfs-1.0.0.tar.bz2"
-- 
1.7.7.1



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Details
Message ID
<1335174706.25030.83.camel@df1844j>
In-Reply-To
<1335170802-1777-1-git-send-email-vkrishn4@gmail.com> (view parent)
Sender timestamp
1335174706
DKIM signature
missing
Download raw message
On Mon, 2012-04-23 at 08:46 +0000, V.Krishn wrote:
> From: "V.Krishn" <vkrishn4@gmail.com>
> 
> A virtual filesystem for looking into archives
> ---

Pushed with minor change.

I've added dev subpackage as it has header files.

Thanks!

- leonardo



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)