mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 18:57:13 +08:00
29 lines
727 B
Bash
29 lines
727 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor: abveritas@chakra-project.org
|
|
# maintainer: BrLi <rainman59118[at]Gmail.com>
|
|
|
|
pkgname=libsndfile
|
|
pkgver=1.0.25
|
|
pkgrel=8
|
|
pkgdesc="A C library for reading and writing files containing sampled sound"
|
|
arch=('x86_64')
|
|
url="http://www.mega-nerd.com/libsndfile"
|
|
license=('LGPL')
|
|
depends=('alsa-lib' 'flac' 'libvorbis')
|
|
options=('!libtool')
|
|
source=("http://www.mega-nerd.com/libsndfile/files/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('e2b7bb637e01022c7d20f95f9c3990a2')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-sqlite
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|