From b750592e96e6eaac5be288967ff7d1cdae019580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Sat, 22 Aug 2015 08:15:34 +0200 Subject: [PATCH] New package: musl-fts-1.0 This is intended to standardize handling of packages for musl libc which require an fts(3) implementation. Adding musl-fts to the makedepends and linking /usr/lib/libfts.a to the target (i.e. LIBS="-lfts") should suffice. --- srcpkgs/musl-fts/template | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 srcpkgs/musl-fts/template diff --git a/srcpkgs/musl-fts/template b/srcpkgs/musl-fts/template new file mode 100644 index 0000000000..002f96c431 --- /dev/null +++ b/srcpkgs/musl-fts/template @@ -0,0 +1,21 @@ +# Template file for 'musl-fts' +pkgname=musl-fts +version=1.0 +revision=1 +build_style=gnu-configure +hostmakedepends="automake" +only_for_archs="aarch64-musl armv6l-musl armv7l-musl i686-musl mips-musl mipsel-musl mipselhf-musl x86_64-musl" +short_desc="Implementation of fts(3) for musl libc" +maintainer="Jürgen Buchmüller " +license="BSD" +homepage="http://github.com/pullmoll/musl-fts" +distfiles="https://github.com/pullmoll/${pkgname}/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz" +checksum=5a1ff3bc2794163253b775072ac50c73d23df7ea05f54373c132d6231553e586 + +pre_configure() { + ./bootstrap.sh +} + +post_install() { + vlicense COPYING +}