mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:47:13 +08:00
24 lines
608 B
Bash
24 lines
608 B
Bash
# Please remember lib32 counterpart
|
|
pkgname=libsndfile
|
|
pkgver=1.0.26
|
|
pkgrel=1
|
|
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=('ec810a0c60c08772a8a5552704b63393')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-sqlite
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|