fts_1.2.7.bb 739 B

1234567891011121314151617181920
  1. # Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
  2. # Released under the MIT license (see COPYING.MIT for the terms)
  3. SUMMARY = "Implementation of fts for musl libc packages"
  4. HOMEPAGE = "https://github.com/pullmoll/musl-fts"
  5. DESCRIPTION = "The musl-fts package implements the fts(3) functions fts_open, fts_read, fts_children, fts_set and fts_close, which are missing in musl libc."
  6. LICENSE = "BSD-3-Clause"
  7. LIC_FILES_CHKSUM = "file://COPYING;md5=5ffe358174aad383f1b69ce3b53da982"
  8. SECTION = "libs"
  9. SRCREV = "0bde52df588e8969879a2cae51c3a4774ec62472"
  10. SRC_URI = "git://github.com/pullmoll/musl-fts.git;branch=master;protocol=https"
  11. inherit autotools pkgconfig
  12. #
  13. # We will skip parsing for non-musl systems
  14. #
  15. COMPATIBLE_HOST = ".*-musl.*"