Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ include*/
*.DS_Store
*.qm
*.autosave

# linglong build file
linglong/
43 changes: 15 additions & 28 deletions linglong.yaml
Original file line number Diff line number Diff line change
@@ -1,44 +1,31 @@
version: "1"

package:
id: org.deepin.draw
name: "deepin-draw"
version: 6.0.1
version: 7.0.5.0
kind: app
description: |
draw for deepin os.

variables:
variables:
extra_args: |
-DVERSION=${VERSION}

runtime:
id: org.deepin.Runtime
version: 23.0.0
command: [deepin-draw]

depends:
- id: "dde-qt-dbus-factory"
version: 5.5.12
- id: qtmpris
version: 0.1.0.1
- id: icu
version: 63.1
type: runtime
- id: xcb-util
version: 0.3.8.1
type: runtime
- id: qtdbusextended
version: 0.0.3
base: org.deepin.base/23.1.0
runtime: org.deepin.runtime.dtk/23.1.0

source:
kind: local
patch: patches/fix-linglong.patch

build:
kind: manual
manual:
configure: |
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=${PREFIX} ${extra_args} ..
make -j6
#make test
make -j install
build: |
rm -rf build
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=${PREFIX} ${extra_args} ..
make -j6
#make test
make -j install
Loading