summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjon noble2019-11-05 22:29:51 +0000
committerjon noble2019-11-05 22:29:51 +0000
commit914aea78b4d7e66de13331064b76ff147404d661 (patch)
tree8c4459b7094ae0c412d259baa57c217f696ee810
parent42eff29d419754efde044ffb9dee9487f9299d8a (diff)
downloadaur-914aea78b4d7e66de13331064b76ff147404d661.tar.gz
Added missing headers
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f4ef59dfc24a..914bf2bcfb8a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = mediahandling
pkgdesc = A library solely intended for the use in the project Chestnut by handling all media-file operations
pkgver = 0.0.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/jonno85uk/mediahandling
arch = x86_64
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 2587945974b9..e896201fe40c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Jon Noble <jonnobleuk@gmail.com>
pkgname=mediahandling
pkgver=0.0.0
-pkgrel=1
+pkgrel=2
pkgdesc="A library solely intended for the use in the project Chestnut by handling all media-file operations"
arch=(x86_64)
url="https://github.com/jonno85uk/mediahandling"
@@ -31,6 +31,8 @@ build() {
package() {
cd "$srcdir/mediahandling"
make install
+ # Temporary until CMakeLists.txt and api is updated
mkdir -p ${pkgdir}/usr/include/mediahandling/
- cp Include/* ${pkgdir}/usr/include/mediahandling/
+ cp Include/* ${pkgdir}/usr/include/mediahandling/
+ cp ffmpeg/*.h ${pkgdir}/usr/include/mediahandling/
}