diff options
Diffstat (limited to 'user/fts')
-rw-r--r-- | user/fts/APKBUILD | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/user/fts/APKBUILD b/user/fts/APKBUILD index 2864ee250..d75403d6a 100644 --- a/user/fts/APKBUILD +++ b/user/fts/APKBUILD @@ -7,6 +7,7 @@ pkgdesc="Provides the fts(3) functions, which are missing in musl libc" url="https://github.com/pullmoll/musl-fts/" arch="all" license="BSD-3-Clause" +depends="" makedepends="automake autoconf libtool" subpackages="$pkgname-dev" source="$pkgname-$pkgver.zip::https://github.com/pullmoll/musl-fts/archive/v$pkgver.zip" @@ -14,12 +15,10 @@ builddir="$srcdir/musl-$pkgname-$pkgver" prepare() { default_prepare - cd "$builddir" ./bootstrap.sh } build() { - cd "$builddir" CFLAGS=-fPIC ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -31,12 +30,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install mkdir -p "$pkgdir"/usr/lib/pkgconfig |