mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
26 lines
698 B
Bash
26 lines
698 B
Bash
|
pkgname=libopenshot-audio
|
||
|
pkgver=0.1.2
|
||
|
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://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
|
||
|
sha256sums=('ec587ceed6b8d0d8de455b222fdb75832e67779e1a7b80925e86709353099e8a')
|
||
|
|
||
|
build() {
|
||
|
# cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
# cd "${srcdir}/${pkgname}-${pkgver}/build"
|
||
|
cd build
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|