Date: Saturday, July 14, 2018 @ 22:03:32
Author: felixonmars
Revision: 359495
archrelease: copy trunk to community-testing-x86_64
Added:
deepin-editor/repos/community-testing-x86_64/
deepin-editor/repos/community-testing-x86_64/PKGBUILD
(from rev 359494, deepin-editor/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: deepin-editor/repos/community-testing-x86_64/PKGBUILD (from rev 359494,
deepin-editor/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2018-07-14 22:03:32 UTC (rev 359495)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=deepin-editor
+pkgver=0.0.5
+pkgrel=1
+pkgdesc='Simple editor for Deepin'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-editor"
+license=('GPL3')
+depends=('deepin-qt5integration' 'dtkwm' 'syntax-highlighting' 'kcodecs'
'polkit-qt5')
+#makedepends=('qt5-tools' 'python')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-editor/archive/$pkgver.tar.gz")
+sha512sums=('126ec9a70f476c610d6dc7b45d3601b75ce491ab5c5f0304672b9c4fbb4be31b34798317c7cc91d8381e582773ba0fe6c49ddd8d7633e212372fd0f194927194')
+
+build(){
+ cd deepin-editor-$pkgver
+ qmake-qt5 PREFIX=/usr
+ make
+}
+
+package() {
+ cd deepin-editor-$pkgver
+ make INSTALL_ROOT="$pkgdir" install
+}