summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-03-17 09:08:35 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-03-17 09:08:35 +0000
commitca6e9667f2d57fe3ca2da8176e3049e5105f18be (patch)
treedcd2c606a95f76e74475db9cc5c96ec7d16c321a /testing
parent9d4a6d51d1ab5bce715104d03487243ff44f39c8 (diff)
downloadaports-ca6e9667f2d57fe3ca2da8176e3049e5105f18be.tar.bz2
aports-ca6e9667f2d57fe3ca2da8176e3049e5105f18be.tar.xz
testing/attr: removed from stable branch
Diffstat (limited to 'testing')
-rw-r--r--testing/attr/APKBUILD50
1 files changed, 0 insertions, 50 deletions
diff --git a/testing/attr/APKBUILD b/testing/attr/APKBUILD
deleted file mode 100644
index 8f80a991..00000000
--- a/testing/attr/APKBUILD
+++ /dev/null
@@ -1,50 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=attr
-pkgver=2.4.44
-_ver=2.4.44
-pkgrel=0
-pkgdesc="Extended attribute support library for ACL support"
-url="http://oss.sgi.com/projects/xfs/"
-license="LGPL"
-depends=
-makedepends="libtool autoconf automake bash gzip"
-subpackage="$pkgname-dev $pkgname-doc"
-source="ftp://ftp.archlinux.org/other/attr/attr-${pkgver}.src.tar.gz"
-
-prepare() {
- cd "$srcdir"/attr-$pkgver
- sed -i -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \
- include/builddefs.in
-
- autoconf || return 1
-}
-
-build() {
- cd "$srcdir"/attr-$pkgver
-
- unset PLATFORM #184564
- export OPTIMIZER="${CFLAGS}"
- export DEBUG=-DNDEBUG
-
- ./configure \
- --prefix=/ \
- --exec-prefix=/ \
- --sbindir=/bin \
- --bindir=/usr/bin \
- --libdir=/lib \
- --libexecdir=/usr/lib \
- --enable-lib64=yes \
- --includedir=/usr/include \
- --mandir=/usr/share/man \
- --datadir=/usr/share \
- --disable-gettext || return 1
- make LIBTOOL="libtool --tag=CC" || return 1
-}
-
-package() {
- cd "$srcdir"/attr-$pkgver
- make DIST_ROOT="$pkgdir" install install-lib install-dev
- # provided by man-pages
- rm -fr "$pkgdir"/usr/share/man/man2
-}
-md5sums="adeefe65c5ad1febe46da185c5bfd5d4 attr-2.4.44.src.tar.gz"