123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- set -e
- program=alsa-topology-conf
- version=1.2.5.1
- arch=noarch
- release=1
- pkgcategory=data
- tarname=${program}-${version}.tar.bz2
- fetch=ftp://ftp.alsa-project.org/pub/lib/$tarname
- description="
- ALSA topology configuration files.
- This is required for the correct functioning of ALSA.
- "
- homepage=https://alsa-project.org
- license="BSD 3-clause"
- docs="LICENSE README.md"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
-
- chmod -R u+w,go-w,a+rX-s .
- mkdir -p "${destdir}/usr/share/alsa"
- cp -RpP 'topology' "${destdir}/usr/share/alsa"
-
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|