desktop/libopenshot-audio/PKGBUILD
2017-11-12 22:55:13 +00:00

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
}