aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-05-14 06:46:20 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-05-14 06:46:20 +0000
commit070233f3a0412ce8ee5760395007d72c2651417e (patch)
tree48339e5484b36180552b6144effa82ba72ae3bec /testing
parenta0975dda43e36a12314f70753e01f5c0e5d39b0f (diff)
downloadaports-070233f3a0412ce8ee5760395007d72c2651417e.tar.bz2
aports-070233f3a0412ce8ee5760395007d72c2651417e.tar.xz
main/avfs: moved from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/avfs/APKBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/testing/avfs/APKBUILD b/testing/avfs/APKBUILD
deleted file mode 100644
index 37ccc19e0f..0000000000
--- a/testing/avfs/APKBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# 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="$pkgname-dev"
-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"