mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
25 lines
658 B
Bash
25 lines
658 B
Bash
pkgname=libopenshot-audio
|
|
pkgver=0.1.5
|
|
pkgrel=1
|
|
pkgdesc="A high-quality audio editing and playback library used by libopenshot."
|
|
arch=('x86_64')
|
|
url="http://openshot.org/"
|
|
license=('GPL3')
|
|
depends=('alsa-lib' 'freetype2' 'libxcursor' 'libxinerama' 'libxrandr')
|
|
makedepends=('cmake' 'doxygen')
|
|
source=("https://github.com/OpenShot/${pkgname}/archive/v${pkgver}.tar.gz")
|
|
sha256sums=('366151ea971fa7d0734777068d40b333a3df83ca33233dc2cd630aeed40d2071')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}/build"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|