diff options
Diffstat (limited to 'testing/attr/APKBUILD')
-rw-r--r-- | testing/attr/APKBUILD | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/testing/attr/APKBUILD b/testing/attr/APKBUILD deleted file mode 100644 index 7046bd56fa..0000000000 --- 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=1 -pkgdesc="Extended attribute support library for ACL support" -url="http://oss.sgi.com/projects/xfs/" -license="LGPL" -depends= -makedepends="libtool autoconf automake bash gzip" -subpackages="$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" |