Date: Wednesday, January 4, 2023 @ 23:54:06
Author: arojas
Revision: 1376005
archrelease: copy trunk to community-staging-x86_64
Added:
deepin-camera/repos/community-staging-x86_64/
deepin-camera/repos/community-staging-x86_64/PKGBUILD
(from rev 1376004, deepin-camera/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: deepin-camera/repos/community-staging-x86_64/PKGBUILD (from rev
1376004, deepin-camera/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-01-04 23:54:06 UTC (rev 1376005)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=deepin-camera
+pkgver=1.4.8
+pkgrel=2
+pkgdesc='Tool to view camera, take photo and video'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-camera"
+license=('GPL3')
+depends=('deepin-qt5integration' 'deepin-qt-dbus-factory'
'deepin-image-editor' 'ffmpeg'
+ 'ffmpegthumbnailer' 'portaudio' 'pulseaudio')
+makedepends=('cmake' 'deepin-gettext-tools' 'ninja' 'qt5-tools')
+groups=('deepin-extra')
+source=("https://github.com/linuxdeepin/deepin-camera/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('d27f15455ab54963fdb5c3cf120edf8726eae279e1dee1ad7e87ab593ac078791ff95cae00a3f97df2f7c5d22b9b8cdfc9fe3656fdfc495d72f1887bb6e1fca1')
+
+build() {
+ cd deepin-camera-$pkgver
+ cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
+ ninja
+}
+
+package() {
+ cd deepin-camera-$pkgver
+ DESTDIR="$pkgdir" ninja install
+}