-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
maliit-framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
maliit-framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
maliit-framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Template file for 'maliit-framework' | ||
pkgname=maliit-framework | ||
version=2.3.0 | ||
revision=1 | ||
build_style=cmake | ||
configure_args="-Denable-examples=ON | ||
-Denable-tests=OFF | ||
-Denable-dbus-activation=ON | ||
-Denable-wayland-gtk=ON | ||
-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner" | ||
hostmakedepends="doxygen gettext qt5-host-tools qt5-qmake qt5-wayland pkg-config | ||
wayland-devel glib-devel" | ||
makedepends="libxcb-devel qt5-devel qt5-declarative-devel qt5-wayland-devel libglib-devel | ||
wayland-devel wayland-protocols libxkbcommon-devel | ||
libXdamage-devel libXcomposite-devel libXext-devel libXfixes-devel" | ||
short_desc="Core libraries of Maliit and server" | ||
maintainer="Hervy Qurrotul Ainur Rozi <[email protected]>" | ||
license="LGPL-2.1-only" | ||
homepage="https://maliit.github.io" | ||
changelog="https://raw.githubusercontent.com/maliit/framework/master/NEWS" | ||
distfiles="https://github.com/maliit/framework/archive/refs/tags/${version}.tar.gz" | ||
checksum=bfc23919ac8b960243f85e8228ad7dfc28d557b52182a0b5a2a216a5c6a8057c | ||
|
||
maliit-framework-devel_package() { | ||
short_desc+=" - development files" | ||
pkg_install() { | ||
vmove usr/include | ||
vmove usr/lib/pkgconfig | ||
vmove usr/lib/qt5/mkspecs | ||
vmove usr/lib/cmake | ||
vmove "usr/lib/*.so" | ||
} | ||
} | ||
|
||
maliit-framework-doc_package() { | ||
short_desc+=" - documentation" | ||
pkg_install() { | ||
vmove usr/share/doc/maliit-framework | ||
vmove usr/share/doc/maliit-framework-doc | ||
} | ||
} | ||
|
||
maliit-framework-examples_package() { | ||
short_desc+=" - examples" | ||
pkg_install() { | ||
vmove usr/bin/maliit-exampleapp-plainqt | ||
} | ||
} |